diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-05-04 20:53:33 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-05-06 07:51:24 +0200 |
commit | 3892112e7b3143f808932771a7b71f4fd335f8cb (patch) | |
tree | fa5254ec26d309e3bda8c8c502363e36feb7f8f9 /source4/torture | |
parent | cad704e8368f6aba28889966a7382afc8b738928 (diff) | |
download | samba-3892112e7b3143f808932771a7b71f4fd335f8cb.tar.gz samba-3892112e7b3143f808932771a7b71f4fd335f8cb.tar.bz2 samba-3892112e7b3143f808932771a7b71f4fd335f8cb.zip |
lib/util Rename ms_fnmatch() to ms_fnmatch_protocol() to avoid dup symbol
This verison of the function takes a protcol as argument to determine
matching rules.
Andrew Bartlett
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/masktest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/masktest.c b/source4/torture/masktest.c index 9f156b807b..65c844bc27 100644 --- a/source4/torture/masktest.c +++ b/source4/torture/masktest.c @@ -49,7 +49,7 @@ static bool reg_match_one(struct smbcli_state *cli, const char *pattern, const c if (ISDOTDOT(file)) file = "."; - return ms_fnmatch(pattern, file, cli->transport->negotiate.protocol)==0; + return ms_fnmatch_protocol(pattern, file, cli->transport->negotiate.protocol)==0; } static char *reg_test(struct smbcli_state *cli, TALLOC_CTX *mem_ctx, const char *pattern, const char *long_name, const char *short_name) |