aboutsummaryrefslogtreecommitdiff
path: root/openssl/src
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2016-10-30 16:34:50 -0700
committerSteven Fackler <[email protected]>2016-10-30 16:34:50 -0700
commit78696514071ef998a2cea67d01db37cf5f6188c6 (patch)
tree88f9a10df938a4929de9dbf103909477057fc588 /openssl/src
parentUse Python's cipher list on the client side. (diff)
downloadrust-openssl-78696514071ef998a2cea67d01db37cf5f6188c6.tar.xz
rust-openssl-78696514071ef998a2cea67d01db37cf5f6188c6.zip
Remove out of date comment
Diffstat (limited to 'openssl/src')
-rw-r--r--openssl/src/ssl/connector.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/openssl/src/ssl/connector.rs b/openssl/src/ssl/connector.rs
index 44e3488c..f89acf1e 100644
--- a/openssl/src/ssl/connector.rs
+++ b/openssl/src/ssl/connector.rs
@@ -27,7 +27,6 @@ See https://tools.ietf.org/html/rfc2412 for how they were generated."#;
fn ctx(method: SslMethod) -> Result<SslContextBuilder, ErrorStack> {
let mut ctx = try!(SslContextBuilder::new(method));
- // options to enable and cipher list lifted from libcurl
let mut opts = ssl::SSL_OP_ALL;
opts |= ssl::SSL_OP_NO_TICKET;
opts |= ssl::SSL_OP_NO_COMPRESSION;