diff options
author | Jeff King <peff@peff.net> | 2013-02-20 15:02:45 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-02-20 13:42:22 -0800 |
commit | 047ec60205b5ae8b180386579749d143db4c9be3 (patch) | |
tree | 4e9113efbdffa951b7e4018e80869dce6a52b8b5 /http.c | |
parent | 819b929d3389f6007e1c469d9060e7876caeb97f (diff) | |
download | git-047ec60205b5ae8b180386579749d143db4c9be3.tar.gz |
pkt-line: move LARGE_PACKET_MAX definition from sideband
Having the packet sizes defined near the packet read/write
functions makes more sense.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http.c')
-rw-r--r-- | http.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5,6 +5,7 @@ #include "url.h" #include "credential.h" #include "version.h" +#include "pkt-line.h" int active_requests; int http_is_verbose; |