Commit 7bc7f257 authored by Steve French's avatar Steve French Committed by Sasha Levin

decode_negTokenInit had wrong calling sequence

[ Upstream commit ebdd207e ]

For krb5 enablement of SMB3, decoding negprot, caller now passes
server struct not the old sec_type
Signed-off-by: default avatarSasha Levin <sasha.levin@oracle.com>
parent 7e8db29e
...@@ -431,8 +431,7 @@ SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses) ...@@ -431,8 +431,7 @@ SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses)
if (rc) if (rc)
goto neg_exit; goto neg_exit;
if (blob_length) if (blob_length)
rc = decode_neg_token_init(security_blob, blob_length, rc = decode_negTokenInit(security_blob, blob_length, server);
&server->sec_type);
if (rc == 1) if (rc == 1)
rc = 0; rc = 0;
else if (rc == 0) { else if (rc == 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment