diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-28 23:09:28 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-28 23:09:28 +0000 |
commit | be51a4635350547e7e4d886ab3ff28cddc72a82b (patch) | |
tree | 41b596fddd7e842c716bf901420f77041742f6e3 /lib | |
parent | 48596f87a952b7d705ff6004a270f145a0620ad2 (diff) |
imap: Fixed accidentally lossing the result code
Accidentally lost the result code in imap_state_capability() and
imap_state_login() with commit b06a78622609.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/imap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/imap.c b/lib/imap.c index 52a3541bd..aeb876210 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -495,7 +495,7 @@ static CURLcode imap_state_capability(struct connectdata *conn) if(!result) state(conn, IMAP_CAPABILITY); - return CURLE_OK; + return result; } static CURLcode imap_state_starttls(struct connectdata *conn) @@ -560,7 +560,7 @@ static CURLcode imap_state_login(struct connectdata *conn) if(!result) state(conn, IMAP_LOGIN); - return CURLE_OK; + return result; } static CURLcode imap_authenticate(struct connectdata *conn) |