[CIFS] Fix build break from recent DFS patch when DFS support not enabled

Signed-off-by: Steve French <sfrench@us.ibm.com>

+4
+4
fs/cifs/connect.c
··· 2522 2522 2523 2523 /* get referral if needed */ 2524 2524 if (rc == -EREMOTE) { 2525 + #ifdef CONFIG_CIFS_DFS_UPCALL 2525 2526 /* convert forward to back slashes in prepath here if needed */ 2526 2527 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS) == 0) 2527 2528 convert_delimiter(cifs_sb->prepath, ··· 2558 2557 kfree(full_path); 2559 2558 goto try_mount_again; 2560 2559 } 2560 + #else /* No DFS support, return error on mount */ 2561 + rc = -EOPNOTSUPP; 2562 + #endif 2561 2563 } 2562 2564 2563 2565 mount_fail_check: