summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9ee6bcd)
raw | patch | inline | side by side (parent: 9ee6bcd)
author | Tay Ray Chuan <rctay89@gmail.com> | |
Thu, 8 Apr 2010 02:15:17 +0000 (10:15 +0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 10 Apr 2010 04:11:09 +0000 (21:11 -0700) |
Signed-off-by: Tay Ray Chuan <rctay89@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
http.c | patch | blob | history | |
http.h | patch | blob | history |
index deab59551dad9a0d2c2e86d75071fa561e4cbf1a..163c0e48e471430adea36b9b63a8996de62d71b1 100644 (file)
--- a/http.c
+++ b/http.c
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] != '/')
index 5c9441c10ce708be426afe7424d63dcbb68a49e2..c78cacb9c3543caf1f59b9068cac2b053ef088f9 100644 (file)
--- a/http.h
+++ b/http.h
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