Commit 53b34f87 authored by Charlie Li's avatar Charlie Li
Browse files

Fix versioning for LibreSSL 3.2.1 and update abort message

parent cee7d070
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -222,7 +222,7 @@ See rust-openssl README for more information:
            (3, 1, 0) => ('3', '1', '0'),
            (3, 1, _) => ('3', '1', 'x'),
            (3, 2, 0) => ('3', '2', '0'),
            (3, 2, 1) => ('3', '2', '0'),
            (3, 2, 1) => ('3', '2', '1'),
            _ => version_error(),
        };

@@ -263,7 +263,7 @@ fn version_error() -> ! {
        "

This crate is only compatible with OpenSSL 1.0.1 through 1.1.1, or LibreSSL 2.5
through 3.2.0, but a different version of OpenSSL was found. The build is now aborting
through 3.2.1, but a different version of OpenSSL was found. The build is now aborting
due to this version mismatch.

"