]> granicus.if.org Git - curl/commitdiff
ConnectionExists: call it multi-use instead of pipelining
authorDaniel Stenberg <daniel@haxx.se>
Mon, 27 Apr 2015 10:50:19 +0000 (12:50 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 27 Apr 2015 20:54:34 +0000 (22:54 +0200)
So that it fits HTTP/2 as well

lib/url.c

index 7dc5c454624adf7684e068ab038f7cc4c1c2be8c..e49d5507aa1a4c5bbf7f15b508d5526c6015fa3c 100644 (file)
--- 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;
     }