diff options
author | Steve French <sfrench@us.ibm.com> | 2006-06-04 22:21:07 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2006-06-04 22:21:07 +0000 |
commit | 9312f6754d4b2d3ce27c21b16fb92923ce92a411 (patch) | |
tree | 7d4edbc90495ec52bfd568064a4a46e8309b3c7d /fs/cifs/sess.c | |
parent | 254e55ed03e2e8d23089b4a468eec2fd2e1ead9b (diff) | |
download | linux-9312f6754d4b2d3ce27c21b16fb92923ce92a411.tar.bz2 |
[CIFS] Fix mask so can set new cifs security flags properly
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/sess.c')
-rw-r--r-- | fs/cifs/sess.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/cifs/sess.c b/fs/cifs/sess.c index 76a09f5f804f..1fe9461c6dca 100644 --- a/fs/cifs/sess.c +++ b/fs/cifs/sess.c @@ -339,9 +339,10 @@ CIFS_SessSetup(unsigned int xid, struct cifsSesInfo *ses, int first_time, return -EOPNOTSUPP; #endif wct = 10; /* lanman 2 style sessionsetup */ - } else if((type == NTLM) || (type == NTLMv2)) /* NTLMv2 may retry NTLM */ + } else if((type == NTLM) || (type == NTLMv2)) { + /* For NTLMv2 failures eventually may need to retry NTLM */ wct = 13; /* old style NTLM sessionsetup */ - else /* same size for negotiate or auth, NTLMSSP or extended security */ + } else /* same size for negotiate or auth, NTLMSSP or extended security */ wct = 12; rc = small_smb_init_no_tc(SMB_COM_SESSION_SETUP_ANDX, wct, ses, |