diff options
author | Michael Adam <obnox@samba.org> | 2012-02-27 20:27:46 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-03-03 17:03:07 +0100 |
commit | 5a5f98dc70bcca088af061473b8cb465e5aa6ff0 (patch) | |
tree | 1dcc0d543955a2ce7062dc05bd7f21f9454b09d7 /source4/libcli/smb2 | |
parent | a92b5f33de6d5d961725f34104a132be1a8dcf52 (diff) | |
download | samba-5a5f98dc70bcca088af061473b8cb465e5aa6ff0.tar.gz |
s4:libcli:smb2: allow max protocol 0x0224
Diffstat (limited to 'source4/libcli/smb2')
-rw-r--r-- | source4/libcli/smb2/connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/smb2/connect.c b/source4/libcli/smb2/connect.c index c743b90ce57..77b974475e3 100644 --- a/source4/libcli/smb2/connect.c +++ b/source4/libcli/smb2/connect.c @@ -143,7 +143,7 @@ static void smb2_connect_socket_done(struct composite_context *creq) subreq = smbXcli_negprot_send(state, state->ev, state->transport->conn, timeout_msec, - PROTOCOL_SMB2_02, PROTOCOL_SMB2_22); + PROTOCOL_SMB2_02, PROTOCOL_SMB2_24); if (tevent_req_nomem(subreq, req)) { return; } |