diff options
author | Jeff Layton <jlayton@redhat.com> | 2011-07-28 12:40:36 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2011-07-31 21:27:16 +0000 |
commit | c4a5534a1b61cdffaa83187efe63712f75544726 (patch) | |
tree | 10b1fd285ec4faf9a65df9a7a63d910360eaad53 /fs/cifs | |
parent | ad635942c869ad8fc9af270d4998c42b4e978b32 (diff) | |
download | linux-c4a5534a1b61cdffaa83187efe63712f75544726.tar.bz2 |
cifs: remove unneeded variable initialization in cifs_reconnect_tcon
Reported-and-acked-by: David Howells <dhowells@redhat.com>
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/cifssmb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c index 187afe38dac7..aac37d99a487 100644 --- a/fs/cifs/cifssmb.c +++ b/fs/cifs/cifssmb.c @@ -107,7 +107,7 @@ static void mark_open_files_invalid(struct cifs_tcon *pTcon) static int cifs_reconnect_tcon(struct cifs_tcon *tcon, int smb_command) { - int rc = 0; + int rc; struct cifs_ses *ses; struct TCP_Server_Info *server; struct nls_table *nls_codepage; |