[CIFS] Fix compile error when CONFIG_CIFS_EXPERIMENTAL is undefined

Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>

+4 -1
+4 -1
fs/cifs/connect.c
··· 3447 3447 pSesInfo->server->secMode, 3448 3448 pSesInfo->server->capabilities, 3449 3449 pSesInfo->server->timeZone)); 3450 + #ifdef CONFIG_CIFS_EXPERIMENTAL 3450 3451 if(experimEnabled > 1) 3451 3452 rc = CIFS_SessSetup(xid, pSesInfo, CIFS_NTLM /* type */, 3452 3453 &ntlmv2_flag, nls_info); 3453 - else if (extended_security 3454 + else 3455 + #endif 3456 + if (extended_security 3454 3457 && (pSesInfo->capabilities & CAP_EXTENDED_SECURITY) 3455 3458 && (pSesInfo->server->secType == NTLMSSP)) { 3456 3459 cFYI(1, ("New style sesssetup"));