diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-06-09 16:08:11 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-06-10 08:49:17 +0200 |
commit | eab2f95c0de94e9816c8a6110d20673761dd97a4 (patch) | |
tree | 422e27ecb86fb1f74de1895b9a84c0a181e2799c /lib/http.c | |
parent | f54b6c4bc2f745fa32014819788c90126121729e (diff) | |
download | curl-eab2f95c0de94e9816c8a6110d20673761dd97a4.tar.gz |
wording: avoid blacklist/whitelist stereotypes
Instead of discussing if there's value or meaning (implied or not) in
the colors, let's use words without the same possibly negative
associations.
Closes #5546
Diffstat (limited to 'lib/http.c')
-rw-r--r-- | lib/http.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/http.c b/lib/http.c index a0d3eca24..9f9a1baa9 100644 --- a/lib/http.c +++ b/lib/http.c @@ -3698,9 +3698,8 @@ CURLcode Curl_http_readwrite_headers(struct Curl_easy *data, else if(conn->httpversion == 20 || (k->upgr101 == UPGR101_REQUESTED && k->httpcode == 101)) { DEBUGF(infof(data, "HTTP/2 found, allow multiplexing\n")); - - /* HTTP/2 cannot blacklist multiplexing since it is a core - functionality of the protocol */ + /* HTTP/2 cannot avoid multiplexing since it is a core functionality + of the protocol */ conn->bundle->multiuse = BUNDLE_MULTIPLEX; } else if(conn->httpversion >= 11 && |