diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-08-27 15:26:48 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-08-27 15:26:48 +0000 |
commit | 096baf62311247c313fc818c061b9382becf6458 (patch) | |
tree | d453bacd1f56876d6866b19359e8602ff09e23c5 /fetchmail.c | |
parent | 4e41d2758a5f46700876197ce659ba28bae90e07 (diff) | |
download | fetchmail-096baf62311247c313fc818c061b9382becf6458.tar.gz fetchmail-096baf62311247c313fc818c061b9382becf6458.tar.bz2 fetchmail-096baf62311247c313fc818c061b9382becf6458.zip |
Successfully genericized POP3 and IMAP.
svn path=/trunk/; revision=73
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 bee75d16..a9ed8fc6 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -331,7 +331,7 @@ struct hostrec *queryctl; break; case P_POP3: case P_APOP: - return(doPOP3(queryctl)); + return(doPOP3bis(queryctl)); break; case P_IMAP: return(doIMAP(queryctl)); |