diff options
| author | Steven Fackler <[email protected]> | 2017-09-20 08:26:58 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-09-20 08:26:58 -0400 |
| commit | 9c923dd93a198091c29dff30c6d93f8d746b956c (patch) | |
| tree | 2787f7fd51b35af21da648ceb82b714ae20569d2 | |
| parent | Merge pull request #695 from Keruspe/master (diff) | |
| parent | openssl-sys: Fix typo in libressl_version definition (diff) | |
| download | rust-openssl-9c923dd93a198091c29dff30c6d93f8d746b956c.tar.xz rust-openssl-9c923dd93a198091c29dff30c6d93f8d746b956c.zip | |
Merge pull request #730 from atlaua/aranea/typo
openssl-sys: Fix typo in libressl_version definition
| -rw-r--r-- | openssl-sys/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl-sys/build.rs b/openssl-sys/build.rs index 4e0dbe80..ff8f48e6 100644 --- a/openssl-sys/build.rs +++ b/openssl-sys/build.rs @@ -456,7 +456,7 @@ See rust-openssl README for more information: println!("cargo:rustc-cfg=libressl"); println!("cargo:rustc-cfg=libressl260"); println!("cargo:libressl=true"); - println!("cargo:libressl_version=250"); + println!("cargo:libressl_version=260"); println!("cargo:version=101"); Version::Libressl } else if expanded.contains("RUST_LIBRESSL_261") { |