summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorRafal Szczesniak <mimir@samba.org>2004-10-03 19:53:20 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:52:53 -0500
commit8199abf7d8edced9ff33148f82a45bbe29578985 (patch)
tree6679ee4f990723c4374452ff16242d57060962c3 /source3/lib
parent9f9efc0d3bcf2ff58248a4de6a91710f5859c4ed (diff)
downloadsamba-8199abf7d8edced9ff33148f82a45bbe29578985.tar.gz
samba-8199abf7d8edced9ff33148f82a45bbe29578985.tar.bz2
samba-8199abf7d8edced9ff33148f82a45bbe29578985.zip
r2813: Fix the build.
At least temporarily, since I've got the impression that _real_ fix is more complex... rafal (This used to be commit 982912f0c8547b0f0edc8d0b26e36e9701cdee82)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index 5e88bd896f..53ce8ab17b 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -2325,7 +2325,7 @@ BOOL mask_match(const char *string, char *pattern, BOOL is_case_sensitive)
if (strcmp(pattern,".") == 0)
return False;
- return ms_fnmatch(pattern, string, Protocol, is_case_sensitive) == 0;
+ return ms_fnmatch(pattern, string, Protocol) == 0;
}
/*******************************************************************