summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTay Ray Chuan <rctay89@gmail.com>2010-04-08 10:15:17 +0800
committerJunio C Hamano <gitster@pobox.com>2010-04-09 21:11:09 -0700
commiteb9d47cf9b1cb36876df1cfd48ab57278729be6d (patch)
tree35ac1cafface40a01b8f6402febf3453720acd03
parent9ee6bcd398057cb0cf3c52b9dc93b094d3d37235 (diff)
downloadgit-eb9d47cf9b1cb36876df1cfd48ab57278729be6d.tar.gz
http: make end_url_with_slash() public
Signed-off-by: Tay Ray Chuan <rctay89@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--http.c2
-rw-r--r--http.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/http.c b/http.c
index deab59551d..163c0e48e4 100644
--- a/http.c
+++ b/http.c
@@ -720,7 +720,7 @@ static inline int hex(int v)
return 'A' + v - 10;
}
-static void end_url_with_slash(struct strbuf *buf, const char *url)
+void end_url_with_slash(struct strbuf *buf, const char *url)
{
strbuf_addstr(buf, url);
if (buf->len && buf->buf[buf->len - 1] != '/')
diff --git a/http.h b/http.h
index 5c9441c10c..c78cacb9c3 100644
--- a/http.h
+++ b/http.h
@@ -117,6 +117,7 @@ extern void append_remote_object_url(struct strbuf *buf, const char *url,
int only_two_digit_prefix);
extern char *get_remote_object_url(const char *url, const char *hex,
int only_two_digit_prefix);
+extern void end_url_with_slash(struct strbuf *buf, const char *url);
/* Options for http_request_*() */
#define HTTP_NO_CACHE 1