From 4df13f69e9facbd09a2b06478e8c40082cda7ce6 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Fri, 5 Apr 2013 18:22:31 -0400 Subject: 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 Signed-off-by: Junio C Hamano --- http.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'http.c') diff --git a/http.c b/http.c index 64068a2fc7..58c063c91b 100644 --- a/http.c +++ b/http.c @@ -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; -- cgit v1.2.1