diff options
author | Jeff King <peff@peff.net> | 2013-04-05 18:22:31 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-04-06 18:56:46 -0700 |
commit | 4df13f69e9facbd09a2b06478e8c40082cda7ce6 (patch) | |
tree | 460c2810930438b8b7516c468a2df563373f1c7a /http.c | |
parent | remote-curl: die directly with http error messages (diff) | |
download | tgif-4df13f69e9facbd09a2b06478e8c40082cda7ce6.tar.xz |
http: drop http_error function
This function is a single-liner and is only called from one
place. Just inline it, which makes the code more obvious.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http.c')
-rw-r--r-- | http.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -941,11 +941,6 @@ cleanup: return ret; } -void http_error(const char *url) -{ - error("unable to access '%s': %s", url, curl_errorstr); -} - int http_fetch_ref(const char *base, struct ref *ref) { char *url; |