aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2005-09-20 00:20:47 +0000
committerMatthias Andree <matthias.andree@gmx.de>2005-09-20 00:20:47 +0000
commiteaf2ce1dd214a1d8716179a25036427096c7c24e (patch)
tree14928c74afea277889f959aafc33deacc416a3de /fetchmail.c
parentde9c2733a448bdcd64917a82e42513e8f3ab6ac5 (diff)
downloadfetchmail-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.c3
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;