aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-09-11 16:44:33 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-09-11 16:44:33 +0000
commit7e3ec8c9d872b906a803c406f4851f30ff98ee5c (patch)
tree3e7048935e884283edd09a098db3cdea81e7cb9d /pop3.c
parentab0ee3eb204cb8a6e85d88a877f7f5b2e06b3294 (diff)
downloadfetchmail-7e3ec8c9d872b906a803c406f4851f30ff98ee5c.tar.gz
fetchmail-7e3ec8c9d872b906a803c406f4851f30ff98ee5c.tar.bz2
fetchmail-7e3ec8c9d872b906a803c406f4851f30ff98ee5c.zip
Reenable APOP compilation.
svn path=/trunk/; revision=78
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pop3.c b/pop3.c
index 30a02769..b386deb3 100644
--- a/pop3.c
+++ b/pop3.c
@@ -90,7 +90,7 @@ char *greeting;
#if defined(HAVE_APOP_SUPPORT)
/* build MD5 digest from greeting timestamp + password */
- if (queryctl->whichpop == P_APOP)
+ if (queryctl->protocol == P_APOP)
if (POP3_BuildDigest(greeting,queryctl) != 0) {
return(PS_AUTHFAIL);
}