Git fork

http.h: remove unnecessary include

The unnecessary include in the header transitively pulled in some
other headers actually needed by source files, though. Have those
source files explicitly include the headers they need.

Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Elijah Newren and committed by
Junio C Hamano
f25e65e0 31d20faa

+3 -1
+1
http-fetch.c
··· 6 6 #include "walker.h" 7 7 #include "setup.h" 8 8 #include "strvec.h" 9 + #include "url.h" 9 10 #include "urlmatch.h" 10 11 #include "trace2.h" 11 12
+1
http-push.c
··· 15 15 #include "strvec.h" 16 16 #include "tree.h" 17 17 #include "tree-walk.h" 18 + #include "url.h" 18 19 #include "packfile.h" 19 20 #include "object-store-ll.h" 20 21 #include "commit-reach.h"
-1
http.h
··· 10 10 11 11 #include "strbuf.h" 12 12 #include "remote.h" 13 - #include "url.h" 14 13 15 14 #define DEFAULT_MAX_REQUESTS 5 16 15
+1
remote-curl.c
··· 21 21 #include "quote.h" 22 22 #include "trace2.h" 23 23 #include "transport.h" 24 + #include "url.h" 24 25 #include "write-or-die.h" 25 26 26 27 static struct remote *remote;