]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
http2: Clarify 'Using HTTP2' verbose message
authorJay Satiro <raysatiro@yahoo.com>
Tue, 15 Jun 2021 06:28:42 +0000 (02:28 -0400)
committerJay Satiro <raysatiro@yahoo.com>
Tue, 15 Jun 2021 07:18:45 +0000 (03:18 -0400)
- Change phrasing from multi-use to multiplexing since the former may
  not be as well understood.

Before: * Using HTTP2, server supports multi-use

After: * Using HTTP2, server supports multiplexing

Bug: https://github.com/curl/curl/discussions/7255
Reported-by: David Hu
Closes https://github.com/curl/curl/pull/7258

lib/http2.c

index 2424eaf7f5a39f42d078e0bb14674d9dd25c4c21..3b7ef2bb4f1f6e40c4892e7fcd04b7746e05f8b0 100644 (file)
@@ -2234,7 +2234,7 @@ CURLcode Curl_http2_setup(struct Curl_easy *data,
     return result;
   }
 
-  infof(data, "Using HTTP2, server supports multi-use\n");
+  infof(data, "Using HTTP2, server supports multiplexing\n");
   stream->upload_left = 0;
   stream->upload_mem = NULL;
   stream->upload_len = 0;