diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-10-05 02:19:17 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-10-05 02:19:17 +0200 |
commit | 33c07e0faee095585f6602d782a4fc10fbe8747a (patch) | |
tree | cb2f7367f4407430ad1188adb5368b1684cd29da /fetchmail.c | |
parent | 4ef51e6214841977399f4cd128cba4cb582619cb (diff) | |
download | fetchmail-33c07e0faee095585f6602d782a4fc10fbe8747a.tar.gz fetchmail-33c07e0faee095585f6602d782a4fc10fbe8747a.tar.bz2 fetchmail-33c07e0faee095585f6602d782a4fc10fbe8747a.zip |
Fix typo, CRAM-Md5 -> CRAM-MD5, in -V mode.
Reported by Marcel Telka, marcel at telka.sk.
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index e431c0ec..fc399366 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -1648,7 +1648,7 @@ static void dump_params (struct runctl *runp, printf(GT_(" OTP authentication will be forced.\n")); break; case A_CRAM_MD5: - printf(GT_(" CRAM-Md5 authentication will be forced.\n")); + printf(GT_(" CRAM-MD5 authentication will be forced.\n")); break; case A_GSSAPI: printf(GT_(" GSSAPI authentication will be forced.\n")); |