ConnectionExists: call it multi-use instead of pipelining

So that it fits HTTP/2 as well
This commit is contained in:
Daniel Stenberg 2015-04-27 12:50:19 +02:00
parent d4f62f6c5d
commit 09a31fabe4
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}