OSDN Git Service

imap-send: return with error if curl failed
authorNicolas Morey-Chaisemartin <nicolas@morey-chaisemartin.com>
Thu, 14 Sep 2017 07:51:57 +0000 (09:51 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 15 Sep 2017 04:31:45 +0000 (13:31 +0900)
curl_append_msgs_to_imap always returned 0, whether curl failed or not.
Return a proper status so git imap-send will exit with an error code
if something wrong happened.

Signed-off-by: Nicolas Morey-Chaisemartin <nicolas@morey-chaisemartin.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
imap-send.c

index b2d0b84..b5e3324 100644 (file)
@@ -1490,7 +1490,7 @@ static int curl_append_msgs_to_imap(struct imap_server_conf *server,
        curl_easy_cleanup(curl);
        curl_global_cleanup();
 
-       return 0;
+       return res != CURLE_OK;
 }
 #endif