1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

s3: Fix a bool/enum mismatch

This commit is contained in:
Volker Lendecke 2009-11-21 16:10:52 +01:00
parent ae1e949810
commit e6f95967cc

View File

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