Commit cfd69038 authored by Steve French's avatar Steve French Committed by Steve French

[CIFS] Add missing quote to cifs kconfig item

Signed-off-by: Steve French (sfrench@us.ibm.com)
parent 814c6842
...@@ -1729,7 +1729,7 @@ config CIFS_POSIX ...@@ -1729,7 +1729,7 @@ config CIFS_POSIX
CIFS POSIX ACL support. If unsure, say N. CIFS POSIX ACL support. If unsure, say N.
config CIFS_EXPERIMENTAL config CIFS_EXPERIMENTAL
bool "CIFS Experimental Features (EXPERIMENTAL) bool "CIFS Experimental Features (EXPERIMENTAL)"
depends on CIFS depends on CIFS
help help
Enables cifs features under testing. These features Enables cifs features under testing. These features
......
...@@ -1574,14 +1574,15 @@ CIFSSessSetup(unsigned int xid, struct cifsSesInfo *ses, ...@@ -1574,14 +1574,15 @@ CIFSSessSetup(unsigned int xid, struct cifsSesInfo *ses,
capabilities |= CAP_DFS; capabilities |= CAP_DFS;
} }
pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities); pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities);
/* pSMB->req_no_secext.CaseInsensitivePasswordLength =
CIFS_SESSION_KEY_SIZE; */ pSMB->req_no_secext.CaseInsensitivePasswordLength =
pSMB->req_no_secext.CaseInsensitivePasswordLength = 0; cpu_to_le16(CIFS_SESSION_KEY_SIZE);
pSMB->req_no_secext.CaseSensitivePasswordLength = pSMB->req_no_secext.CaseSensitivePasswordLength =
cpu_to_le16(CIFS_SESSION_KEY_SIZE); cpu_to_le16(CIFS_SESSION_KEY_SIZE);
bcc_ptr = pByteArea(smb_buffer); bcc_ptr = pByteArea(smb_buffer);
/* memcpy(bcc_ptr, (char *) lm_session_key, CIFS_SESSION_KEY_SIZE); memcpy(bcc_ptr, (char *) session_key, CIFS_SESSION_KEY_SIZE);
bcc_ptr += CIFS_SESSION_KEY_SIZE; */ bcc_ptr += CIFS_SESSION_KEY_SIZE;
memcpy(bcc_ptr, (char *) session_key, CIFS_SESSION_KEY_SIZE); memcpy(bcc_ptr, (char *) session_key, CIFS_SESSION_KEY_SIZE);
bcc_ptr += CIFS_SESSION_KEY_SIZE; bcc_ptr += CIFS_SESSION_KEY_SIZE;
......
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