diff --git a/appl/ftp/ftp/main.c b/appl/ftp/ftp/main.c index b4eeb60eb..d4cdd13ab 100644 --- a/appl/ftp/ftp/main.c +++ b/appl/ftp/ftp/main.c @@ -59,6 +59,8 @@ struct getargs getargs[] = { "passive mode", NULL}, { NULL, 't', arg_counter, &trace, "Packet tracing", NULL}, + { "gss-bindings", 0, arg_negative_flag, &ftp_do_gss_bindings, + "Use GSS-API bindings", NULL}, { NULL, 'v', arg_counter, &verbose, "verbosity", NULL}, { NULL, 'K', arg_negative_flag, &use_kerberos, @@ -96,6 +98,7 @@ main(int argc, char **argv) lineedit = 1; passivemode = 0; /* passive mode not active */ use_kerberos = 1; + ftp_do_gss_bindings = 1; if(getarg(getargs, num_args, argc, argv, &optind)) usage(1);