summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2015-04-27 12:50:19 +0200
committerDaniel Stenberg <daniel@haxx.se>2015-04-27 22:54:34 +0200
commit09a31fabe413c1a1630ff86144f5cec5ddafe387 (patch)
tree1b094040b0d9fa52bbafc470f9cf25ce1b97da18
parentd4f62f6c5da7bd3861019b3e0ee777be7b6c4f89 (diff)
downloadcurl-09a31fabe413c1a1630ff86144f5cec5ddafe387.tar.gz
ConnectionExists: call it multi-use instead of pipelining
So that it fits HTTP/2 as well
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
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;
}