Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
cfd69038
Commit
cfd69038
authored
Nov 30, 2004
by
Steve French
Committed by
Steve French
Nov 30, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CIFS] Add missing quote to cifs kconfig item
Signed-off-by: Steve French (sfrench@us.ibm.com)
parent
814c6842
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
fs/Kconfig
fs/Kconfig
+1
-1
fs/cifs/connect.c
fs/cifs/connect.c
+6
-5
No files found.
fs/Kconfig
View file @
cfd69038
...
...
@@ -1729,7 +1729,7 @@ config CIFS_POSIX
CIFS POSIX ACL support. If unsure, say N.
config CIFS_EXPERIMENTAL
bool "CIFS Experimental Features (EXPERIMENTAL)
bool "CIFS Experimental Features (EXPERIMENTAL)
"
depends on CIFS
help
Enables cifs features under testing. These features
...
...
fs/cifs/connect.c
View file @
cfd69038
...
...
@@ -1574,14 +1574,15 @@ CIFSSessSetup(unsigned int xid, struct cifsSesInfo *ses,
capabilities
|=
CAP_DFS
;
}
pSMB
->
req_no_secext
.
Capabilities
=
cpu_to_le32
(
capabilities
);
/* pSMB->req_no_secext.CaseInsensitivePasswordLength =
CIFS_SESSION_KEY_SIZE; */
pSMB
->
req_no_secext
.
CaseInsensitivePasswordLength
=
0
;
pSMB
->
req_no_secext
.
CaseInsensitivePasswordLength
=
cpu_to_le16
(
CIFS_SESSION_KEY_SIZE
);
pSMB
->
req_no_secext
.
CaseSensitivePasswordLength
=
cpu_to_le16
(
CIFS_SESSION_KEY_SIZE
);
bcc_ptr
=
pByteArea
(
smb_buffer
);
/* memcpy(bcc_ptr, (char *) lm_
session_key, CIFS_SESSION_KEY_SIZE);
bcc_ptr += CIFS_SESSION_KEY_SIZE; */
memcpy
(
bcc_ptr
,
(
char
*
)
session_key
,
CIFS_SESSION_KEY_SIZE
);
bcc_ptr
+=
CIFS_SESSION_KEY_SIZE
;
memcpy
(
bcc_ptr
,
(
char
*
)
session_key
,
CIFS_SESSION_KEY_SIZE
);
bcc_ptr
+=
CIFS_SESSION_KEY_SIZE
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment