git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] http-push: fix missing "#ifdef USE_CURL_MULTI" around "is_running_queue"
@ 2009-05-10 16:44 Christian Couder
  2009-05-11 12:25 ` Tay Ray Chuan
  0 siblings, 1 reply; 3+ messages in thread
From: Christian Couder @ 2009-05-10 16:44 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

As it is breaking the build when USE_CURL_MULTI is not defined.

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
---
 http-push.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

This patch applies to pu.

diff --git a/http-push.c b/http-push.c
index ef1a9f3..14f3996 100644
--- a/http-push.c
+++ b/http-push.c
@@ -2291,7 +2291,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()) {
-- 
1.6.3.rc1.112.g17e25

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-05-12  4:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-10 16:44 [PATCH] http-push: fix missing "#ifdef USE_CURL_MULTI" around "is_running_queue" Christian Couder
2009-05-11 12:25 ` Tay Ray Chuan
2009-05-12  4:25   ` Christian Couder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).