]> git.ipfire.org Git - thirdparty/git.git/blobdiff - http.c
i18n: add no-op _() and N_() wrappers
[thirdparty/git.git] / http.c
diff --git a/http.c b/http.c
index f582b13b915e58a189086cdec2bab6dbb94eac6a..9e767723ed1045445e91e79489cb8ec8bb861965 100644 (file)
--- a/http.c
+++ b/http.c
@@ -743,13 +743,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;