1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-29 01:03:57 +03:00

options: Remove unused variable.

This commit is contained in:
Andreas Schneider
2010-12-21 21:29:22 +01:00
parent 825581d0dc
commit 936c65f03e

View File

@@ -644,7 +644,6 @@ int ssh_options_set(ssh_session session, enum ssh_options_e type,
int ssh_options_getopt(ssh_session session, int *argcptr, char **argv) { int ssh_options_getopt(ssh_session session, int *argcptr, char **argv) {
char *user = NULL; char *user = NULL;
char *cipher = NULL; char *cipher = NULL;
char *localaddr = NULL;
char *identity = NULL; char *identity = NULL;
char *port = NULL; char *port = NULL;
char *bindport = NULL; char *bindport = NULL;
@@ -703,9 +702,6 @@ int ssh_options_getopt(ssh_session session, int *argcptr, char **argv) {
case 'i': case 'i':
identity = optarg; identity = optarg;
break; break;
case 'b':
localaddr = optarg;
break;
case 'C': case 'C':
compress++; compress++;
break; break;