smb: client: remove redundant pointer 'server'

The pointer 'server' is assigned but never read, the pointer is
redundant and can be removed. Cleans up clang scan build warning:

fs/smb/client/dfs.c:217:3: warning: Value stored to 'server' is
never read [deadcode.DeadStores]

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Steve French <stfrench@microsoft.com>

authored by Colin Ian King and committed by Steve French dfbf0ee0 ff7d80a9

-2
-2
fs/smb/client/dfs.c
··· 143 143 struct smb3_fs_context *ctx = mnt_ctx->fs_ctx; 144 144 char *ref_path = NULL, *full_path = NULL; 145 145 struct dfs_cache_tgt_iterator *tit; 146 - struct TCP_Server_Info *server; 147 146 struct cifs_tcon *tcon; 148 147 char *origin_fullpath = NULL; 149 148 char sep = CIFS_DIR_SEP(cifs_sb); ··· 213 214 } while (rc == -EREMOTE); 214 215 215 216 if (!rc) { 216 - server = mnt_ctx->server; 217 217 tcon = mnt_ctx->tcon; 218 218 219 219 spin_lock(&tcon->tc_lock);