summaryrefslogtreecommitdiff
path: root/ext/net/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ext/net/lib.rs')
-rw-r--r--ext/net/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/net/lib.rs b/ext/net/lib.rs
index 068a865eb..8909c6f40 100644
--- a/ext/net/lib.rs
+++ b/ext/net/lib.rs
@@ -94,7 +94,7 @@ pub struct DefaultTlsOptions {
/// using type alias for a `Option<Vec<String>>` could work, but there's a high chance
/// that there might be another type alias pointing to a `Option<Vec<String>>`, which
/// would override previously used alias.
-pub struct UnsafelyIgnoreCertificateErrors(Option<Vec<String>>);
+pub struct UnsafelyIgnoreCertificateErrors(pub Option<Vec<String>>);
pub fn init<P: NetPermissions + 'static>(
root_cert_store: Option<RootCertStore>,