Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/http.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2013-04-06 02:22:31 +0400
committerJunio C Hamano <gitster@pobox.com>2013-04-07 05:56:46 +0400
commit4df13f69e9facbd09a2b06478e8c40082cda7ce6 (patch)
tree460c2810930438b8b7516c468a2df563373f1c7a /http.c
parentde89f0b25a42238948787421c0253228c006f7fa (diff)
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.c5
1 files changed, 0 insertions, 5 deletions
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;