From 579b0037e6a96b9c9fd843e35888beff138dd60b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sat, 19 Jul 2003 09:49:28 +0000 Subject: [PATCH] (args): add gss-bindings (main): set ftp_do_gss_bindings to 1 to make client use them git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12457 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/ftp/ftp/main.c | 3 +++ 1 file changed, 3 insertions(+) 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);