From: Steve French Date: Wed, 6 May 2009 00:48:30 +0000 (+0000) Subject: [CIFS] Fix SMB uid in NTLMSSP authenticate request X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=844823cb822932d2c599abf38692e3d6a5b5a320;p=linux-beck.git [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 --- diff --git a/fs/cifs/sess.c b/fs/cifs/sess.c index e68744e169b3..897a052270f9 100644 --- a/fs/cifs/sess.c +++ b/fs/cifs/sess.c @@ -822,6 +822,10 @@ ssetup_ntlmssp_authenticate: nls_cp, first_time); 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 { cERROR(1, ("invalid phase %d", phase)); rc = -ENOSYS;