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 <chriscool@tuxfamily.org>
Signed-off-by: Tay Ray Chuan <rctay89@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Tay Ray Chuan 2009-06-06 16:43:31 +08:00 committed by Junio C Hamano
parent 4f66250df6
commit 68862a3152
1 changed files with 2 additions and 0 deletions

View File

@ -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()) {