From: Steve French Date: Mon, 24 Apr 2006 16:24:54 +0000 (+0000) Subject: [CIFS] Fix compile error when CONFIG_CIFS_EXPERIMENTAL is undefined X-Git-Tag: firefly_0821_release~35984^2 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=301dc3e6f6ea83703fa52919c00e60661da5a8fe;p=firefly-linux-kernel-4.4.55.git [CIFS] Fix compile error when CONFIG_CIFS_EXPERIMENTAL is undefined Signed-off-by: Dave Kleikamp Signed-off-by: Steve French --- diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index aaf151cb5822..d2ec806a4f32 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -3447,10 +3447,13 @@ int cifs_setup_session(unsigned int xid, struct cifsSesInfo *pSesInfo, pSesInfo->server->secMode, pSesInfo->server->capabilities, pSesInfo->server->timeZone)); +#ifdef CONFIG_CIFS_EXPERIMENTAL if(experimEnabled > 1) rc = CIFS_SessSetup(xid, pSesInfo, CIFS_NTLM /* type */, &ntlmv2_flag, nls_info); - else if (extended_security + else +#endif + if (extended_security && (pSesInfo->capabilities & CAP_EXTENDED_SECURITY) && (pSesInfo->server->secType == NTLMSSP)) { cFYI(1, ("New style sesssetup"));