From eaf2ce1dd214a1d8716179a25036427096c7c24e Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Tue, 20 Sep 2005 00:20:47 +0000 Subject: Fix "auth ntlm" to send AUTH NTLM (rather than AUTH MSN). Add "auth msn". svn path=/trunk/; revision=4297 --- options.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'options.c') diff --git a/options.c b/options.c index 0323e71a..c55276e5 100644 --- a/options.c +++ b/options.c @@ -418,6 +418,8 @@ struct query *ctl; /* option record to be initialized */ ctl->server.authenticate = A_GSSAPI; else if (strcmp(optarg, "any") == 0) ctl->server.authenticate = A_ANY; + else if (strcmp(optarg, "msn") == 0) + ctl->server.authenticate = A_MSN; else { fprintf(stderr,GT_("Invalid authentication `%s' specified.\n"), optarg); errflag++; -- cgit v1.2.3