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

Commit 55a7f006 authored by Steve French's avatar Steve French
Browse files

cifs: fix confusing warning message on reconnect



When DFS is not used on the mount we should not be mentioning
DFS in the warning message on reconnect (it could be confusing).

Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
Reviewed-by: default avatarRonnie Sahlberg <lsahlber@redhat.com>
parent 6d2f84ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -483,7 +483,7 @@ cifs_reconnect(struct TCP_Server_Info *server)
		cifs_sb = NULL;
	} else {
		rc = reconn_setup_dfs_targets(cifs_sb, &tgt_list, &tgt_it);
		if (rc) {
		if (rc && (rc != -EOPNOTSUPP)) {
			cifs_dbg(VFS, "%s: no target servers for DFS failover\n",
				 __func__);
		} else {