diff options
author | Rafal Szczesniak <mimir@samba.org> | 2004-10-03 19:53:20 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:53 -0500 |
commit | 8199abf7d8edced9ff33148f82a45bbe29578985 (patch) | |
tree | 6679ee4f990723c4374452ff16242d57060962c3 /source3/lib/util.c | |
parent | 9f9efc0d3bcf2ff58248a4de6a91710f5859c4ed (diff) | |
download | samba-8199abf7d8edced9ff33148f82a45bbe29578985.tar.gz |
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/util.c')
-rw-r--r-- | source3/lib/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 5e88bd896ff..53ce8ab17be 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; } /******************************************************************* |