diff options
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 6 |
1 files changed, 4 insertions, 2 deletions
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)); |