From: Martijn de Gouw Date: Wed, 24 Oct 2012 09:45:46 +0000 (+0200) Subject: cifs: set MAY_SIGN when sec=krb5 X-Git-Tag: next-20130220~97^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=68851c4e74e7a4c6a1f8bb4b62dc018e91692bab;p=karo-tx-linux.git 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 Signed-off-by: Jeff Layton Signed-off-by: Steve French --- diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index 12b3da39733b..d997737950fb 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -996,7 +996,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;