From: Volker Lendecke Date: Sat, 21 Nov 2009 15:10:52 +0000 (+0100) Subject: s3: Fix a bool/enum mismatch X-Git-Tag: samba-4.0.0alpha9~276 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e6f95967cc0a4877d62b7656882bbed920b02b2e;p=thirdparty%2Fsamba.git s3: Fix a bool/enum mismatch --- diff --git a/source3/lib/ms_fnmatch.c b/source3/lib/ms_fnmatch.c index 1eac9fa14ad..bff73829407 100644 --- a/source3/lib/ms_fnmatch.c +++ b/source3/lib/ms_fnmatch.c @@ -234,5 +234,5 @@ int ms_fnmatch(const char *pattern, const char *string, bool translate_pattern, /* a generic fnmatch function - uses for non-CIFS pattern matching */ int gen_fnmatch(const char *pattern, const char *string) { - return ms_fnmatch(pattern, string, PROTOCOL_NT1, False); + return ms_fnmatch(pattern, string, true, False); }