diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/util.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 3161aba63f..1a2f8fd84a 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -1782,7 +1782,6 @@ BOOL ms_has_wild(char *s) *******************************************************************/ BOOL mask_match(char *string, char *pattern, BOOL is_case_sensitive) { - extern int Protocol; fstring p2, s2; if (strcmp(string,"..") == 0) string = "."; @@ -1806,7 +1805,6 @@ BOOL mask_match(char *string, char *pattern, BOOL is_case_sensitive) BOOL wild_match(char *string, char *pattern) { pstring p2, s2; - extern int Protocol; pstrcpy(p2, pattern); pstrcpy(s2, string); |