From 1f52f4c407ad9e9f2e73514f351ff24f61d0324a Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Mon, 9 Oct 2000 03:48:47 +0000 Subject: [PATCH] Get rid of const modifiers; they're problematic with old compilers. --- exclude.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exclude.c b/exclude.c index 6539b0fd..3b70b4e5 100644 --- a/exclude.c +++ b/exclude.c @@ -148,7 +148,7 @@ int check_exclude(char *name, struct exclude_struct **local_exclude_list, STRUCT_STAT *st) { int n; - struct exclude_struct const *ent; + struct exclude_struct *ent; if (name && (name[0] == '.') && !name[1]) /* never exclude '.', even if somebody does --exclude '*' */ -- 2.34.1