Skip to content

Commit

Permalink
Adds Debug derive for SslConnector
Browse files Browse the repository at this point in the history
  • Loading branch information
sgg committed Jun 5, 2020
1 parent 639c8af commit d5be3e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openssl/src/ssl/connector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ fn ctx(method: SslMethod) -> Result<SslContextBuilder, ErrorStack> {
///
/// 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 {
Expand Down

0 comments on commit d5be3e5

Please sign in to comment.