Get rid of const modifiers; they're problematic with old compilers.
authorMartin Pool <mbp@samba.org>
Mon, 9 Oct 2000 03:48:47 +0000 (03:48 +0000)
committerMartin Pool <mbp@samba.org>
Mon, 9 Oct 2000 03:48:47 +0000 (03:48 +0000)
exclude.c

index 6539b0f..3b70b4e 100644 (file)
--- 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 '*' */