aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/pop3.c b/pop3.c
index c6de4333..665bd9ea 100644
--- a/pop3.c
+++ b/pop3.c
@@ -144,14 +144,17 @@ int pop3_getauth(int sock, struct query *ctl, char *greeting)
* Special case in case we're running Craig Metz's
* OPIE daemon. Code in opiegenerator() will detect this.
*/
- if (ctl->password && !strcmp(ctl->password, "opie"))
+ if (strcmp(ctl->password, "opie") == 0)
{
if (ok = opiegenerator(challenge, "", response))
if (ok != 2)
PROTOCOL_ERROR
}
- /* otherwise generate a challenge from the secret we have */
+ /*
+ * Otherwise, generate a challenge from whatever secret we
+ * have previously collected.
+ */
else if (opiegenerator(challenge, ctl->password, response))
PROTOCOL_ERROR