aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2013-01-24 08:22:16 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2013-01-24 08:22:16 +0000
commit217a66f247b55a47d4a5077092846e34d7b4f4c2 (patch)
tree2f47aec7da85479d3f5a4bb6dfaa396ecd893304
parent1bab6bdd955adcd88d9169ad808b47924443eacd (diff)
Pop3Session::state to POP3_ERROR if QUIT fail.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3195 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog2
-rw-r--r--libsylph/pop.c5
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fe795364..e827ce87 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@
* libsylph/pop.c
src/inc.c: do not disconnect immediately but send QUIT on normal
POP3 errors.
+ * libsylph/pop.c: set Pop3Session::state to POP3_ERROR if QUIT
+ fail.
2013-01-22
diff --git a/libsylph/pop.c b/libsylph/pop.c
index c5b86b2e..aa41b53c 100644
--- a/libsylph/pop.c
+++ b/libsylph/pop.c
@@ -844,7 +844,10 @@ static gint pop3_session_recv_msg(Session *session, const gchar *msg)
}
break;
case POP3_LOGOUT:
- pop3_session->state = POP3_DONE;
+ if (val == PS_SUCCESS)
+ pop3_session->state = POP3_DONE;
+ else
+ pop3_session->state = POP3_ERROR;
session_disconnect(session);
break;
case POP3_ERROR: