From 6ac208976c5ac5839f92ac80ed00b0120d96fad5 Mon Sep 17 00:00:00 2001
From: "Eric S. Raymond" <esr@thyrsus.com>
Date: Sat, 7 Mar 1998 08:07:27 +0000
Subject: Fix wrong-password coredump.

svn path=/trunk/; revision=1693
---
 NEWS   | 5 +++++
 pop3.c | 7 +++----
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/NEWS b/NEWS
index 46d8fd6a..affd36e7 100644
--- a/NEWS
+++ b/NEWS
@@ -14,6 +14,11 @@
 				Release Notes:
 
 ------------------------------------------------------------------------------
+fetchmail-4.4.0 ():
+* Fix bug that prevented graceful exit from POP3 validation on wrong password.
+
+There are 275 people on fetchmail-friends and 153 on fetchmail-announce.
+
 fetchmail-4.3.9 (Fri Mar  6 10:45:32 EST 1998):
 * Relax the LOGIN capability check in IMAP.
 * John Stracke <francis@netscape.com> sent a workaround for SIGALRM flakiness
diff --git a/pop3.c b/pop3.c
index 5873b488..11ef1105 100644
--- a/pop3.c
+++ b/pop3.c
@@ -216,14 +216,13 @@ int pop3_getauth(int sock, struct query *ctl, char *greeting)
 	ok = PS_ERROR;
     }
 
-    /* maybe we detected a lock-busy condition? */
     if (ok != 0)
     {
+	/* maybe we detected a lock-busy condition? */
         if (ok == PS_LOCKBUSY)
-	{
 	    error(0, 0, "lock busy!  Is another session active?"); 
-	    return(PS_LOCKBUSY);
-	}
+
+	return(ok);
     }
 
     /*
-- 
cgit v1.2.3