diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-10-05 03:26:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:54 -0500 |
commit | d9b8eaabc5e1d549aa56ed45f2e410ad766075be (patch) | |
tree | 0dd7f155e1939e649b65b933abbe21eba464311b /source3/torture | |
parent | 56fd69174ec939618a66bf663f3b4ea3448f2f8d (diff) | |
download | samba-d9b8eaabc5e1d549aa56ed45f2e410ad766075be.tar.gz samba-d9b8eaabc5e1d549aa56ed45f2e410ad766075be.tar.bz2 samba-d9b8eaabc5e1d549aa56ed45f2e410ad766075be.zip |
r2824: restored the is_case_sensitive option to ms_fnmatch() in Samba3. It is
very rarely used, but we sohuldn't be removing a feature in a minor
release of this kind.
(This used to be commit 4ce0505bc369243aa77013519ce4e4f6e50f5a48)
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/masktest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/masktest.c b/source3/torture/masktest.c index fa901e3d63..67515463d1 100644 --- a/source3/torture/masktest.c +++ b/source3/torture/masktest.c @@ -140,7 +140,7 @@ static BOOL reg_match_one(struct cli_state *cli, const char *pattern, const char if (strcmp(file,"..") == 0) file = "."; - return ms_fnmatch(pattern, file, cli->protocol)==0; + return ms_fnmatch(pattern, file, cli->protocol, False) == 0; } static char *reg_test(struct cli_state *cli, char *pattern, char *long_name, char *short_name) |