1
1

options: Remove unused variable.

Этот коммит содержится в:
Andreas Schneider 2010-12-21 21:29:22 +01:00
родитель 825581d0dc
Коммит 936c65f03e

Просмотреть файл

@ -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) {
char *user = NULL;
char *cipher = NULL;
char *localaddr = NULL;
char *identity = NULL;
char *port = NULL;
char *bindport = NULL;
@ -703,9 +702,6 @@ int ssh_options_getopt(ssh_session session, int *argcptr, char **argv) {
case 'i':
identity = optarg;
break;
case 'b':
localaddr = optarg;
break;
case 'C':
compress++;
break;