diff options
author | Martijn de Gouw <martijn.de.gouw@prodrive.nl> | 2012-10-24 11:45:46 +0200 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2013-02-27 16:54:25 -0600 |
commit | 0b7bc84000d71f3647ca33ab1bf5bd928535c846 (patch) | |
tree | a9b32cfe31eb00f5e582a1194b6cb8199d44e926 /fs/cifs | |
parent | 07b92d0d570c903aeef4f3b76ebbdd728bc72805 (diff) | |
download | linux-3.10-0b7bc84000d71f3647ca33ab1bf5bd928535c846.tar.gz linux-3.10-0b7bc84000d71f3647ca33ab1bf5bd928535c846.tar.bz2 linux-3.10-0b7bc84000d71f3647ca33ab1bf5bd928535c846.zip |
cifs: set MAY_SIGN when sec=krb5
Setting this secFlg allows usage of dfs where some servers require
signing and others don't.
Signed-off-by: Martijn de Gouw <martijn.de.gouw@prodrive.nl>
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index 4474a57f30a..54125e04fd0 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -1031,7 +1031,7 @@ static int cifs_parse_security_flavors(char *value, switch (match_token(value, cifs_secflavor_tokens, args)) { case Opt_sec_krb5: - vol->secFlg |= CIFSSEC_MAY_KRB5; + vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MAY_SIGN; break; case Opt_sec_krb5i: vol->secFlg |= CIFSSEC_MAY_KRB5 | CIFSSEC_MUST_SIGN; |