Skip to content

Commit

Permalink
Update rust-openssl patch
Browse files Browse the repository at this point in the history
  • Loading branch information
botovq committed Nov 3, 2023
1 parent 287e0a2 commit b19acf3
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/rust-openssl.patch
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
diff --git a/openssl-sys/build/main.rs b/openssl-sys/build/main.rs
index 82013b6c..2974abed 100644
index bbee7c5c..57033b2d 100644
--- a/openssl-sys/build/main.rs
+++ b/openssl-sys/build/main.rs
@@ -273,7 +273,7 @@ See rust-openssl documentation for more information:
(3, 7, 1) => ('3', '7', '1'),
(3, 7, _) => ('3', '7', 'x'),
@@ -293,6 +293,7 @@ See rust-openssl documentation for more information:
(3, 8, 0) => ('3', '8', '0'),
- (3, 8, 1) => ('3', '8', '1'),
+ (3, 8, _) => ('3', '8', 'x'),
(3, 8, 1) => ('3', '8', '1'),
(3, 8, _) => ('3', '8', 'x'),
+ (3, 9, _) => ('3', '8', 'x'),
_ => version_error(),
};

0 comments on commit b19acf3

Please sign in to comment.