Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 539673ff authored by Jeff Layton's avatar Jeff Layton Committed by Steve French
Browse files

cifs: allow sec=none mounts to work against servers that don't support extended security



In the case of sec=none, we're not sending a username or password, so
there's little benefit to mandating NTLMSSP auth. Allow it to use
unencapsulated auth in that case.

Signed-off-by: default avatarJeff Layton <jlayton@redhat.com>
Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent 166faf21
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1061,6 +1061,7 @@ static int cifs_parse_security_flavors(char *value,
#endif
	case Opt_sec_none:
		vol->nullauth = 1;
		vol->secFlg |= CIFSSEC_MAY_NTLM;
		break;
	default:
		cifs_dbg(VFS, "bad security option: %s\n", value);