1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Fixed some compiler warnings.

(This used to be commit 06608971ed)
This commit is contained in:
Tim Potter 2001-09-04 06:16:01 +00:00
parent fbc1f326f4
commit 55cf37488f

View File

@ -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);