From cdb4193b2cc7c184a130d09bab8504cf4b06a2cf Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Fri, 27 Sep 1996 18:16:59 +0000 Subject: We know APOP works. Also add a POP3 optimization. svn path=/trunk/; revision=165 --- fetchmail.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'fetchmail.c') diff --git a/fetchmail.c b/fetchmail.c index 4fb4d07d..15cf8a0e 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -410,8 +410,10 @@ struct hostrec *queryctl; if (queryctl->password[0] == '\0') printf(" Password will be prompted for.\n"); else if (outlevel == O_VERBOSE) - if (queryctl->protocol == P_RPOP) - printf(" RPOP id = '%s'\n", queryctl->password); + if (queryctl->protocol == P_APOP) + printf(" APOP secret = '%s'\n", queryctl->password); + else if (queryctl->protocol == P_RPOP) + printf(" RPOP secret = '%s'\n", queryctl->password); else printf(" Password = '%s'\n", queryctl->password); printf(" Protocol is %s", showproto(queryctl->protocol)); -- cgit v1.2.3