aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2022-10-22 17:59:16 +0200
committerTheo Buehler <tb@openbsd.org>2022-10-22 17:59:16 +0200
commit379b2f843b6e03c1d4785157cb15a0f5cd89b156 (patch)
treebf0d108d267739c6c0db5e452f1d6f86cc68fdcf
parent4fc98a5f7f105a5f2deba0b8e2e0d0954b7c4714 (diff)
downloadportable-379b2f843b6e03c1d4785157cb15a0f5cd89b156.tar.gz
portable-379b2f843b6e03c1d4785157cb15a0f5cd89b156.tar.bz2
portable-379b2f843b6e03c1d4785157cb15a0f5cd89b156.zip
rebase rust-openssl patch
-rw-r--r--.github/rust-openssl.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/rust-openssl.patch b/.github/rust-openssl.patch
index 8d8bde2..5821c72 100644
--- a/.github/rust-openssl.patch
+++ b/.github/rust-openssl.patch
@@ -1,11 +1,11 @@
1diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs 1diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs
2index c2aceeec..26e0816a 100644 2index 2ca53c97..56a60161 100644
3--- a/openssl-sys/build/main.rs 3--- a/openssl-sys/build/main.rs
4+++ b/openssl-sys/build/main.rs 4+++ b/openssl-sys/build/main.rs
5@@ -280,7 +280,7 @@ See rust-openssl documentation for more information: 5@@ -281,7 +281,7 @@ See rust-openssl documentation for more information:
6 (3, 4, 0) => ('3', '4', '0'),
7 (3, 4, _) => ('3', '4', 'x'), 6 (3, 4, _) => ('3', '4', 'x'),
8 (3, 5, _) => ('3', '5', 'x'), 7 (3, 5, _) => ('3', '5', 'x'),
8 (3, 6, 0) => ('3', '6', '0'),
9- _ => version_error(), 9- _ => version_error(),
10+ _ => ('3', '6', 'x'), 10+ _ => ('3', '6', 'x'),
11 }; 11 };