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 | 982912f0c8547b0f0edc8d0b26e36e9701cdee82 (patch) | |
tree | 679b63952e504a6039f17f7b212865d38c6cc50d /source/lib | |
parent | 83dadcd089905aa8ff3392010177ffa1dc8237ba (diff) | |
download | samba-982912f0c8547b0f0edc8d0b26e36e9701cdee82.tar.gz samba-982912f0c8547b0f0edc8d0b26e36e9701cdee82.tar.xz samba-982912f0c8547b0f0edc8d0b26e36e9701cdee82.zip |
r2813: Fix the build.
At least temporarily, since I've got the impression that _real_ fix
is more complex...
rafal
Diffstat (limited to 'source/lib')
-rw-r--r-- | source/lib/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/util.c b/source/lib/util.c index 5e88bd896ff..53ce8ab17be 100644 --- a/source/lib/util.c +++ b/source/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; } /******************************************************************* |