[CIFS] Fix SMB uid in NTLMSSP authenticate request
We were not setting the SMB uid in NTLMSSP authenticate request which could lead to INVALID_PARAMETER error on 2nd session setup. Signed-off-by: Steve French <sfrench@us.ibm.com>
This commit is contained in:
parent
0b3cc85800
commit
844823cb82
|
@ -822,6 +822,10 @@ ssetup_ntlmssp_authenticate:
|
||||||
nls_cp,
|
nls_cp,
|
||||||
first_time);
|
first_time);
|
||||||
iov[1].iov_len = blob_len;
|
iov[1].iov_len = blob_len;
|
||||||
|
/* Make sure that we tell the server that we
|
||||||
|
are using the uid that it just gave us back
|
||||||
|
on the response (challenge) */
|
||||||
|
smb_buf->Uid = ses->Suid;
|
||||||
} else {
|
} else {
|
||||||
cERROR(1, ("invalid phase %d", phase));
|
cERROR(1, ("invalid phase %d", phase));
|
||||||
rc = -ENOSYS;
|
rc = -ENOSYS;
|
||||||
|
|
Loading…
Reference in New Issue