1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

examples: Updated SMTP MAIL example to return libcurl result code

This commit is contained in:
Steve Holme 2014-01-12 15:44:51 +00:00
parent 7e85964080
commit e473a4d2f3

View File

@ -133,5 +133,5 @@ int main(void)
curl_easy_cleanup(curl);
}
return 0;
return (int)res;
}