Skip to content

Commit

Permalink
Adjust rust-openssl version check
Browse files Browse the repository at this point in the history
  • Loading branch information
botovq committed Mar 20, 2023
1 parent 6b3c90e commit 59261d0
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/rust-openssl.patch
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs
index cdea3eb4..b16ebecf 100644
index 3357518f..f55b5def 100644
--- a/openssl-sys/build/main.rs
+++ b/openssl-sys/build/main.rs
@@ -282,7 +282,7 @@ See rust-openssl documentation for more information:
(3, 5, _) => ('3', '5', 'x'),
(3, 6, 0) => ('3', '6', '0'),
@@ -295,6 +295,7 @@ See rust-openssl documentation for more information:
(3, 6, _) => ('3', '6', 'x'),
- (3, 7, 0) => ('3', '7', '0'),
(3, 7, 0) => ('3', '7', '0'),
(3, 7, 1) => ('3', '7', '1'),
+ (3, 7, _) => ('3', '7', 'x'),
_ => version_error(),
};
Expand Down

0 comments on commit 59261d0

Please sign in to comment.