diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-09-20 00:20:47 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-09-20 00:20:47 +0000 |
commit | eaf2ce1dd214a1d8716179a25036427096c7c24e (patch) | |
tree | 14928c74afea277889f959aafc33deacc416a3de /fetchmail.c | |
parent | de9c2733a448bdcd64917a82e42513e8f3ab6ac5 (diff) | |
download | fetchmail-eaf2ce1dd214a1d8716179a25036427096c7c24e.tar.gz fetchmail-eaf2ce1dd214a1d8716179a25036427096c7c24e.tar.bz2 fetchmail-eaf2ce1dd214a1d8716179a25036427096c7c24e.zip |
Fix "auth ntlm" to send AUTH NTLM (rather than AUTH MSN). Add "auth msn".
svn path=/trunk/; revision=4297
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index 11ea28b9..6d1b34e1 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -1536,6 +1536,9 @@ static void dump_params (struct runctl *runp, case A_PASSWORD: printf(GT_(" Password authentication will be forced.\n")); break; + case A_MSN: + printf(GT_(" MSN authentication will be forced.\n")); + break; case A_NTLM: printf(GT_(" NTLM authentication will be forced.\n")); break; |