aboutsummaryrefslogtreecommitdiff
path: root/src/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.c')
-rw-r--r--src/options.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/options.c b/src/options.c
index 534012de..5a9c5bf5 100644
--- a/src/options.c
+++ b/src/options.c
@@ -698,7 +698,6 @@ int ssh_options_getopt(ssh_session session, int *argcptr, char **argv) {
char *cipher = NULL;
char *identity = NULL;
char *port = NULL;
- char *bindport = NULL;
char **save = NULL;
int i = 0;
int argc = *argcptr;
@@ -728,7 +727,7 @@ int ssh_options_getopt(ssh_session session, int *argcptr, char **argv) {
}
opterr = 0; /* shut up getopt */
- while(cont && ((i = getopt(argc, argv, "c:i:Cl:p:vb:t:rd12")) != -1)) {
+ while(cont && ((i = getopt(argc, argv, "c:i:Cl:p:vb:rd12")) != -1)) {
switch(i) {
case 'l':
user = optarg;
@@ -736,9 +735,6 @@ int ssh_options_getopt(ssh_session session, int *argcptr, char **argv) {
case 'p':
port = optarg;
break;
- case 't':
- bindport = optarg;
- break;
case 'v':
debuglevel++;
break;