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:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user