From 6ac5da508913c682bb58431e7be6c88ca988c224 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 25 Sep 1997 18:28:33 +0000 Subject: Simplified OTP logic. svn path=/trunk/; revision=1413 --- pop3.c | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'pop3.c') diff --git a/pop3.c b/pop3.c index 665bd9ea..254aa6b0 100644 --- a/pop3.c +++ b/pop3.c @@ -140,22 +140,7 @@ int pop3_getauth(int sock, struct query *ctl, char *greeting) { char response[OPIE_RESPONSE_MAX+1]; - /* - * Special case in case we're running Craig Metz's - * OPIE daemon. Code in opiegenerator() will detect this. - */ - if (strcmp(ctl->password, "opie") == 0) - { - if (ok = opiegenerator(challenge, "", response)) - if (ok != 2) - PROTOCOL_ERROR - } - - /* - * Otherwise, generate a challenge from whatever secret we - * have previously collected. - */ - else if (opiegenerator(challenge, ctl->password, response)) + if (opiegenerator(challenge, ctl->password, response)) PROTOCOL_ERROR ok = gen_transact(sock, "PASS %s", response); -- cgit v1.2.3