aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fetchmail.c2
-rw-r--r--pop3.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 8dbaaaa4..d3645db1 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -331,7 +331,7 @@ struct hostrec *queryctl;
break;
case P_POP3:
case P_APOP:
- return(doPOP3bis(queryctl));
+ return(doPOP3(queryctl));
break;
case P_IMAP:
return(doIMAP(queryctl));
diff --git a/pop3.c b/pop3.c
index 6bc3fac7..f8bad81f 100644
--- a/pop3.c
+++ b/pop3.c
@@ -254,7 +254,7 @@ static struct method pop3 =
"QUIT", /* the POP3 exit command */
};
-int doPOP3bis (queryctl)
+int doPOP3 (queryctl)
/* retrieve messages using POP3 */
struct hostrec *queryctl;
{