Skip to content

Commit 0d838a5

Browse files
committed
fixup! Add support for SSL_group_to_name and SSL_get_negotiated_group
1 parent 22c085c commit 0d838a5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

openssl/src/ssl/mod.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@
5959
//! ```
6060
#[cfg(ossl300)]
6161
use crate::cvt_long;
62+
#[cfg(ossl300)]
63+
use crate::cvt_p_const;
6264
use crate::dh::{Dh, DhRef};
6365
#[cfg(all(ossl101, not(ossl110)))]
6466
use crate::ec::EcKey;
@@ -82,7 +84,7 @@ use crate::x509::store::{X509Store, X509StoreBuilderRef, X509StoreRef};
8284
#[cfg(any(ossl102, boringssl, libressl261))]
8385
use crate::x509::verify::X509VerifyParamRef;
8486
use crate::x509::{X509Name, X509Ref, X509StoreContextRef, X509VerifyResult, X509};
85-
use crate::{cvt, cvt_n, cvt_p, cvt_p_const, init};
87+
use crate::{cvt, cvt_n, cvt_p, init};
8688
use bitflags::bitflags;
8789
use cfg_if::cfg_if;
8890
use foreign_types::{ForeignType, ForeignTypeRef, Opaque};

0 commit comments

Comments
 (0)