diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2021-06-15 02:28:42 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2021-06-15 03:18:45 -0400 |
commit | c6cac5a96cf4dcec68e74e362242a8800822774b (patch) | |
tree | ff9713941d4eebcacd5671932990ca2894389249 /lib/http2.c | |
parent | ce8a38fe803867dcb9b6136fa2290ba3c443c7af (diff) | |
download | curl-c6cac5a96cf4dcec68e74e362242a8800822774b.tar.gz |
http2: Clarify 'Using HTTP2' verbose message
- 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
Diffstat (limited to 'lib/http2.c')
-rw-r--r-- | lib/http2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http2.c b/lib/http2.c index 2424eaf7f..3b7ef2bb4 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -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; |