From: Tay Ray Chuan Date: Sat, 6 Jun 2009 08:43:31 +0000 (+0800) Subject: http-push: fix missing "#ifdef USE_CURL_MULTI" around "is_running_queue" X-Git-Tag: v1.6.4-rc0~60^2~18 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=68862a3152691424a146a98ce52308e09faf5bb9;p=git.git http-push: fix missing "#ifdef USE_CURL_MULTI" around "is_running_queue" As it is breaking the build when USE_CURL_MULTI is not defined. Signed-off-by: Christian Couder Signed-off-by: Tay Ray Chuan Signed-off-by: Junio C Hamano --- diff --git a/http-push.c b/http-push.c index b3d5c4512..7f36a4087 100644 --- a/http-push.c +++ b/http-push.c @@ -2297,7 +2297,9 @@ int main(int argc, char **argv) repo->url = rewritten_url; } +#ifdef USE_CURL_MULTI is_running_queue = 0; +#endif /* Verify DAV compliance/lock support */ if (!locking_available()) {