Skip to content

Commit f92c896

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

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
@@ -82,7 +82,9 @@ use crate::x509::store::{X509Store, X509StoreBuilderRef, X509StoreRef};
8282
#[cfg(any(ossl102, boringssl, libressl261))]
8383
use crate::x509::verify::X509VerifyParamRef;
8484
use crate::x509::{X509Name, X509Ref, X509StoreContextRef, X509VerifyResult, X509};
85-
use crate::{cvt, cvt_n, cvt_p, cvt_p_const, init};
85+
use crate::{cvt, cvt_n, cvt_p, init};
86+
#[cfg(ossl300)]
87+
use crate::cvt_p_const;
8688
use bitflags::bitflags;
8789
use cfg_if::cfg_if;
8890
use foreign_types::{ForeignType, ForeignTypeRef, Opaque};

0 commit comments

Comments
 (0)