]> git.ipfire.org Git - thirdparty/git.git/blobdiff - http.c
shift end_url_with_slash() from http.[ch] to url.[ch]
[thirdparty/git.git] / http.c
diff --git a/http.c b/http.c
index 0a5011f615bdfade0b69682b177dc97471ac20a3..3b3da12e0fb732438fcb7438160e6001afc189fa 100644 (file)
--- 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;