Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
http: style fixes for curl_multi_init error check
[gitweb.git]
/
http.c
diff --git
a/http.c
b/http.c
index 0276aa94261c82fc4bcec2ae731e6566a39be0a3..d33b122cd15f9d1b712c837c35a3c918f3e3f3ad 100644
(file)
--- a/
http.c
+++ b/
http.c
@@
-421,10
+421,8
@@
void http_init(struct remote *remote, const char *url, int proactive_auth)
}
curlm = curl_multi_init();
- if (curlm == NULL) {
- fprintf(stderr, "Error creating curl multi handle.\n");
- exit(1);
- }
+ if (!curlm)
+ die("curl_multi_init failed");
#endif
if (getenv("GIT_SSL_NO_VERIFY"))