aboutsummaryrefslogtreecommitdiff
path: root/lib/pop3.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-02-23 11:34:52 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-02-23 11:34:52 +0000
commitd415327bd7ae56c57ba24a18af9a402e74138b0e (patch)
tree0f0cb6d3277d507b16297204f23207db1aa2e64c /lib/pop3.c
parent35fb6bee0e3e3a49579f650b897bb1f7a86d157d (diff)
email: Minor tidy up following IMAP changes
Diffstat (limited to 'lib/pop3.c')
-rw-r--r--lib/pop3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pop3.c b/lib/pop3.c
index 11e13d427..cba4cbd2e 100644
--- a/lib/pop3.c
+++ b/lib/pop3.c
@@ -1401,7 +1401,7 @@ static CURLcode pop3_done(struct connectdata *conn, CURLcode status,
Curl_safefree(pop3c->mailbox);
Curl_safefree(pop3c->custom);
- /* Clear the transfer mode for the next connection */
+ /* Clear the transfer mode for the next request */
pop3->transfer = FTPTRANSFER_BODY;
return result;
@@ -1529,7 +1529,7 @@ static CURLcode pop3_disconnect(struct connectdata *conn,
/* The POP3 session may or may not have been allocated/setup at this
point! */
if(!dead_connection && pop3c->pp.conn)
- (void)pop3_quit(conn); /* ignore errors on the LOGOUT */
+ (void)pop3_quit(conn); /* ignore errors on QUIT */
/* Disconnect from the server */
Curl_pp_disconnect(&pop3c->pp);