From 23e13dd414e49e284605de417245b9b15cefb136 Mon Sep 17 00:00:00 2001
From: Fabian Keil <fk@fabiankeil.de>
Date: Wed, 22 Jan 2014 14:33:14 +0100
Subject: [PATCH] Bring back debug output for Curl_addHandleToPipeline()

This reverts a part of 5b2342d3772 and is a work-around to
get test 584 working reliably on FreeBSD 11-CURRENT again.
---
 lib/url.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/url.c b/lib/url.c
index 665133f..3f85502 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -2683,6 +2683,7 @@ CURLcode Curl_addHandleToPipeline(struct SessionHandle *data,
 {
   if(!Curl_llist_insert_next(pipeline, pipeline->tail, data))
     return CURLE_OUT_OF_MEMORY;
+  infof(data, "Curl_addHandleToPipeline: length: %d\n", pipeline->size);
   return CURLE_OK;
 }
 
-- 
1.8.5.2


