Skip to content

Commit 6486029

Browse files
committed
Add workaround also for CURL 7.79.0.
CURL 7.79.0 is bundled with Oracle Solaris 11.4.42 CBE release which is still used vi Github vmactions/solaris-vm. Fixes: #15521
1 parent 47c911e commit 6486029

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cargo/util/context/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3131,7 +3131,7 @@ fn disables_multiplexing_for_bad_curl(
31313131
use crate::util::network;
31323132

31333133
if network::proxy::http_proxy_exists(http, gctx) && http.multiplexing.is_none() {
3134-
let bad_curl_versions = ["7.87.0", "7.88.0", "7.88.1"];
3134+
let bad_curl_versions = ["7.79.0", "7.87.0", "7.88.0", "7.88.1"];
31353135
if bad_curl_versions
31363136
.iter()
31373137
.any(|v| curl_version.starts_with(v))

0 commit comments

Comments
 (0)