From 09a31fabe413c1a1630ff86144f5cec5ddafe387 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 27 Apr 2015 12:50:19 +0200 Subject: ConnectionExists: call it multi-use instead of pipelining So that it fits HTTP/2 as well --- lib/url.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/url.c b/lib/url.c index 7dc5c4546..e49d5507a 100644 --- a/lib/url.c +++ b/lib/url.c @@ -3096,7 +3096,7 @@ ConnectionExists(struct SessionHandle *data, /* We can't pipe if we don't know anything about the server */ if(canPipeline && !bundle->server_supports_pipelining) { - infof(data, "Server doesn't support pipelining\n"); + infof(data, "Server doesn't support multi-use (yet)\n"); canPipeline = FALSE; } -- cgit v1.2.3