From eb9d47cf9b1cb36876df1cfd48ab57278729be6d Mon Sep 17 00:00:00 2001 From: Tay Ray Chuan Date: Thu, 8 Apr 2010 10:15:17 +0800 Subject: http: make end_url_with_slash() public Signed-off-by: Tay Ray Chuan Signed-off-by: Junio C Hamano --- http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'http.c') 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] != '/') -- cgit v1.2.1