diff options
author | Luk Claes <luk@debian.org> | 2012-05-19 18:09:30 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-05-28 14:49:45 +0200 |
commit | d8c0646a5db34a390ceeb853e50c2d098b992c85 (patch) | |
tree | 486749c41d524ffa61c50adae19f1b1d2352f525 /source3/torture | |
parent | 4f6f4ea93c83fa5154f450e2e43649467e4c2b32 (diff) | |
download | samba-d8c0646a5db34a390ceeb853e50c2d098b992c85.tar.gz samba-d8c0646a5db34a390ceeb853e50c2d098b992c85.tar.bz2 samba-d8c0646a5db34a390ceeb853e50c2d098b992c85.zip |
s3:libsmb: get rid of cli_state_protocol
Signed-off-by: Luk Claes <luk@debian.org>
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/masktest.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/torture/masktest.c b/source3/torture/masktest.c index 29569fada6..6669949635 100644 --- a/source3/torture/masktest.c +++ b/source3/torture/masktest.c @@ -22,6 +22,7 @@ #include "trans2.h" #include "libsmb/libsmb.h" #include "libsmb/nmblib.h" +#include "../libcli/smb/smbXcli_base.h" static fstring password; static fstring username; @@ -144,7 +145,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_state_protocol(cli), False) == 0; + return ms_fnmatch(pattern, file, smbXcli_conn_protocol(cli->conn), False) == 0; } static char *reg_test(struct cli_state *cli, const char *pattern, const char *long_name, const char *short_name) |