From 407f330d7b24d5cdf577cde4313a4169066c49fb Mon Sep 17 00:00:00 2001 From: johnthagen Date: Sat, 7 Oct 2017 18:29:53 -0400 Subject: [PATCH] Move OpenSSL implementation details into a normal comment --- openssl/src/conf.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/openssl/src/conf.rs b/openssl/src/conf.rs index 91030138..56654ecb 100644 --- a/openssl/src/conf.rs +++ b/openssl/src/conf.rs @@ -8,14 +8,11 @@ pub struct ConfMethod(*mut ffi::CONF_METHOD); impl ConfMethod { /// Retrieve handle to the default OpenSSL configuration file processing function. - /// - /// # OpenSSL Implementation Details - /// - /// `NCONF` stands for "New Conf", as described in crypto/conf/conf_lib.c. This is - /// a newer API than the "CONF classic" functions. pub fn default() -> ConfMethod { unsafe { ffi::init(); + // `NCONF` stands for "New Conf", as described in crypto/conf/conf_lib.c. This is + // a newer API than the "CONF classic" functions. ConfMethod(ffi::NCONF_default()) } }