From: Daniel Stenberg Date: Mon, 27 Apr 2015 10:50:19 +0000 (+0200) Subject: ConnectionExists: call it multi-use instead of pipelining X-Git-Tag: curl-7_43_0~208 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09a31fabe413c1a1630ff86144f5cec5ddafe387;p=thirdparty%2Fcurl.git ConnectionExists: call it multi-use instead of pipelining So that it fits HTTP/2 as well --- diff --git a/lib/url.c b/lib/url.c index 7dc5c45462..e49d5507aa 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; }