diff options
author | Shirish Pargaonkar <shirishpargaonkar@gmail.com> | 2010-10-26 18:10:24 -0500 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2010-10-27 02:04:30 +0000 |
commit | f7c5445a9deecffea8a4fffc0163bf582411ac8a (patch) | |
tree | efea64611599a034510be60077ca20bed68a48e8 /fs/cifs/sess.c | |
parent | 307fbd31b61623ad1b5388b452118f8aea99f9d0 (diff) | |
download | linux-3.10-f7c5445a9deecffea8a4fffc0163bf582411ac8a.tar.gz linux-3.10-f7c5445a9deecffea8a4fffc0163bf582411ac8a.tar.bz2 linux-3.10-f7c5445a9deecffea8a4fffc0163bf582411ac8a.zip |
NTLM auth and sign - minor error corrections and cleanup
Minor cleanup - Fix spelling mistake, make meaningful (goto) label
In function setup_ntlmv2_rsp(), do not return 0 and leak memory,
let the tiblob get freed.
For function find_domain_name(), pass already available nls table pointer
instead of loading and unloading the table again in this function.
For ntlmv2, the case sensitive password length is the length of the
response, so subtract session key length (16 bytes) from the .len.
Signed-off-by: Shirish Pargaonkar <shirishpargaonkar@gmail.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/sess.c')
-rw-r--r-- | fs/cifs/sess.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/sess.c b/fs/cifs/sess.c index d998c4f7aae..e0515a62715 100644 --- a/fs/cifs/sess.c +++ b/fs/cifs/sess.c @@ -738,7 +738,7 @@ ssetup_ntlmssp_authenticate: * assigned, tilen is 0 otherwise. */ pSMB->req_no_secext.CaseSensitivePasswordLength = - cpu_to_le16(ses->auth_key.len); + cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE); if (ses->capabilities & CAP_UNICODE) { if (iov[0].iov_len % 2) { |