diff --git a/openssl/src/ssl/connector.rs b/openssl/src/ssl/connector.rs index 17a3556a..d2a7ea67 100644 --- a/openssl/src/ssl/connector.rs +++ b/openssl/src/ssl/connector.rs @@ -56,7 +56,7 @@ fn ctx(method: SslMethod) -> Result { /// /// OpenSSL's built in hostname verification is used when linking against OpenSSL 1.0.2 or 1.1.0, /// and a custom implementation is used when linking against OpenSSL 1.0.1. -#[derive(Clone)] +#[derive(Clone, Debug)] pub struct SslConnector(SslContext); impl SslConnector {