aboutsummaryrefslogtreecommitdiff
path: root/http.c
diff options
context:
space:
mode:
authorTay Ray Chuan <rctay89@gmail.com>2010-11-25 16:21:04 +0800
committerJunio C Hamano <gitster@pobox.com>2010-11-26 14:50:45 -0800
commit1966d9f37b94fa506bfa43961fb111084aaa2c45 (patch)
tree9354dd356a68cda21fa6491160120a57a9782060 /http.c
parent6cfc028641246939ee52a6720d4d3c4b63ccb515 (diff)
downloadgit-1966d9f37b94fa506bfa43961fb111084aaa2c45.tar.gz
git-1966d9f37b94fa506bfa43961fb111084aaa2c45.tar.xz
shift end_url_with_slash() from http.[ch] to url.[ch]
This allows non-http/curl users to access it too (eg. http-backend.c). Update include headers in end_url_with_slash() users too. Signed-off-by: Tay Ray Chuan <rctay89@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http.c')
-rw-r--r--http.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/http.c b/http.c
index 0a5011f61..3b3da12e0 100644
--- a/http.c
+++ b/http.c
@@ -2,6 +2,7 @@
#include "pack.h"
#include "sideband.h"
#include "run-command.h"
+#include "url.h"
int data_received;
int active_requests;
@@ -728,13 +729,6 @@ static inline int hex(int v)
return 'A' + v - 10;
}
-void end_url_with_slash(struct strbuf *buf, const char *url)
-{
- strbuf_addstr(buf, url);
- if (buf->len && buf->buf[buf->len - 1] != '/')
- strbuf_addstr(buf, "/");
-}
-
static char *quote_ref_url(const char *base, const char *ref)
{
struct strbuf buf = STRBUF_INIT;