aboutsummaryrefslogtreecommitdiff
path: root/openssl/src
diff options
context:
space:
mode:
authorChristopher Vittal <[email protected]>2017-10-03 23:53:50 -0400
committerChristopher Vittal <[email protected]>2017-10-03 23:59:33 -0400
commite0efd1d438fbf426a7e1006e4983b0f352c630f6 (patch)
tree626c6643d3b39e115cc5f43b330c688daf86e18a /openssl/src
parentMerge pull request #743 from AndyGauge/doc-asn1 (diff)
downloadrust-openssl-e0efd1d438fbf426a7e1006e4983b0f352c630f6.tar.xz
rust-openssl-e0efd1d438fbf426a7e1006e4983b0f352c630f6.zip
Add support for LibreSSL 2.6.2
Diffstat (limited to 'openssl/src')
-rw-r--r--openssl/src/ssl/tests/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/src/ssl/tests/mod.rs b/openssl/src/ssl/tests/mod.rs
index a3ac6832..38c553e7 100644
--- a/openssl/src/ssl/tests/mod.rs
+++ b/openssl/src/ssl/tests/mod.rs
@@ -616,7 +616,7 @@ fn test_connect_with_npn_successful_single_match() {
/// Tests that when the `SslStream` is created as a server stream, the protocols
/// are correctly advertised to the client.
#[test]
-#[cfg(not(libressl261))]
+#[cfg(all(not(libressl261),not(libressl262)))]
fn test_npn_server_advertise_multiple() {
let listener = TcpListener::bind("127.0.0.1:0").unwrap();
let localhost = listener.local_addr().unwrap();