decode_negTokenInit had wrong calling sequence

For krb5 enablement of SMB3, decoding negprot, caller now passes
server struct not the old sec_type
This commit is contained in:
Steve French 2014-10-20 12:48:23 -05:00 committed by Steve French
parent 911a8dfa47
commit ebdd207e29

View file

@ -431,8 +431,7 @@ SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses)
if (rc)
goto neg_exit;
if (blob_length)
rc = decode_neg_token_init(security_blob, blob_length,
&server->sec_type);
rc = decode_negTokenInit(security_blob, blob_length, server);
if (rc == 1)
rc = 0;
else if (rc == 0) {