diff options
author | Jeff Layton <jlayton@redhat.com> | 2010-04-24 07:57:45 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2010-04-26 14:55:33 -0400 |
commit | 04912d6a20185473db025061b9b2c81fbdffc48b (patch) | |
tree | bcebae3f427f4ef3af20f407803bf0a3d31e6733 /fs/cifs/cifssmb.c | |
parent | d00c28de55a69d13cf2c6a99efc3e81a5d95af74 (diff) |
cifs: rename "extended_security" to "global_secflags"
...since that more accurately describes what that variable holds.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/cifssmb.c')
-rw-r--r-- | fs/cifs/cifssmb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c index 980c38c658b7..4ecb361640bf 100644 --- a/fs/cifs/cifssmb.c +++ b/fs/cifs/cifssmb.c | |||
@@ -372,7 +372,7 @@ CIFSSMBNegotiate(unsigned int xid, struct cifsSesInfo *ses) | |||
372 | if (ses->overrideSecFlg & (~(CIFSSEC_MUST_SIGN | CIFSSEC_MUST_SEAL))) | 372 | if (ses->overrideSecFlg & (~(CIFSSEC_MUST_SIGN | CIFSSEC_MUST_SEAL))) |
373 | secFlags = ses->overrideSecFlg; /* BB FIXME fix sign flags? */ | 373 | secFlags = ses->overrideSecFlg; /* BB FIXME fix sign flags? */ |
374 | else /* if override flags set only sign/seal OR them with global auth */ | 374 | else /* if override flags set only sign/seal OR them with global auth */ |
375 | secFlags = extended_security | ses->overrideSecFlg; | 375 | secFlags = global_secflags | ses->overrideSecFlg; |
376 | 376 | ||
377 | cFYI(1, "secFlags 0x%x", secFlags); | 377 | cFYI(1, "secFlags 0x%x", secFlags); |
378 | 378 | ||