diff options
author | Luk Claes <luk@debian.org> | 2012-05-20 17:54:29 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-05-28 14:49:49 +0200 |
commit | 764b5e56108362a53acf8f435203dd1e56ecd2ce (patch) | |
tree | 2433fbabf58b5351da003c163e1c9a85d054f4d9 /source3/torture/locktest.c | |
parent | 82895ab22fb19fabe43ec29365dbe33da0b917f2 (diff) | |
download | samba-764b5e56108362a53acf8f435203dd1e56ecd2ce.tar.gz |
s3:libsmb: get rid of cli_negprot
Signed-off-by: Luk Claes <luk@debian.org>
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/torture/locktest.c')
-rw-r--r-- | source3/torture/locktest.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/torture/locktest.c b/source3/torture/locktest.c index 288ce8fe543..04928f20ac8 100644 --- a/source3/torture/locktest.c +++ b/source3/torture/locktest.c @@ -22,6 +22,7 @@ #include "system/filesys.h" #include "locking/proto.h" #include "libsmb/nmblib.h" +#include "../libcli/smb/smbXcli_base.h" static fstring password[2]; static fstring username[2]; @@ -198,7 +199,8 @@ static struct cli_state *connect_one(char *share, int snum) return NULL; } - status = cli_negprot(c, PROTOCOL_NT1); + status = smbXcli_negprot(c->conn, c->timeout, PROTOCOL_CORE, + PROTOCOL_NT1); if (!NT_STATUS_IS_OK(status)) { DEBUG(0, ("protocol negotiation failed: %s\n", nt_errstr(status))); |