diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-11 16:44:33 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-11 16:44:33 +0000 |
commit | 7e3ec8c9d872b906a803c406f4851f30ff98ee5c (patch) | |
tree | 3e7048935e884283edd09a098db3cdea81e7cb9d /pop3.c | |
parent | ab0ee3eb204cb8a6e85d88a877f7f5b2e06b3294 (diff) | |
download | fetchmail-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |