diff options
author | Yehuda Sadeh Weinraub <Yehuda.Sadeh@expand.com> | 2007-06-05 21:31:16 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-06-05 21:31:16 +0000 |
commit | 100c1ddc98e070c1b595d6bad329fb57bc57313c (patch) | |
tree | 7f1ff8705941e2d177b4e836f07d0aac27f9b5e4 /fs | |
parent | 221601c3d1df8148525daf3143a7a22fba772566 (diff) | |
download | kernel_samsung_smdk4412-100c1ddc98e070c1b595d6bad329fb57bc57313c.zip kernel_samsung_smdk4412-100c1ddc98e070c1b595d6bad329fb57bc57313c.tar.gz kernel_samsung_smdk4412-100c1ddc98e070c1b595d6bad329fb57bc57313c.tar.bz2 |
[CIFS] Missing flag on negprot needed for some servers to force packet signing
A related signature issue that I came across.
There's a bug in win2k that when NT error codes are not negotiated, the
server doesn't response that signatures are mandatory. Since there's
(currently) no way turn on signatures in such case, I had to force NT
error codes, so that this bug will not occur
Signed-off-by: Yehuda Sadeh Weinraub <Yehuda.Sadeh@expand.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/cifssmb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c index 14de58f..57419a1 100644 --- a/fs/cifs/cifssmb.c +++ b/fs/cifs/cifssmb.c @@ -433,8 +433,8 @@ CIFSSMBNegotiate(unsigned int xid, struct cifsSesInfo *ses) cFYI(1,("secFlags 0x%x",secFlags)); pSMB->hdr.Mid = GetNextMid(server); - pSMB->hdr.Flags2 |= SMBFLG2_UNICODE; - if((secFlags & CIFSSEC_MUST_KRB5) == CIFSSEC_MUST_KRB5) + pSMB->hdr.Flags2 |= (SMBFLG2_UNICODE | SMBFLG2_ERR_STATUS); + if ((secFlags & CIFSSEC_MUST_KRB5) == CIFSSEC_MUST_KRB5) pSMB->hdr.Flags2 |= SMBFLG2_EXT_SEC; count = 0; |