From: Doug MacEachern Date: Wed, 27 Mar 2002 03:28:52 +0000 (+0000) Subject: RAND_status macro was in the wrong place X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=253975ee67c4129bdee3979f894a67a13e48c61d;p=thirdparty%2Fapache%2Fhttpd.git RAND_status macro was in the wrong place git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@94208 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_toolkit_compat.h b/ssl_toolkit_compat.h index 1db46bbb8a9..543a30225ff 100644 --- a/ssl_toolkit_compat.h +++ b/ssl_toolkit_compat.h @@ -51,6 +51,9 @@ #else /* RSA sslc */ +/* sslc does not support this function, OpenSSL has since 9.5.1 */ +#define RAND_status() 1 + #ifndef STACK_OF #define STACK_OF(type) STACK #endif @@ -118,7 +121,4 @@ SSL_set_verify(ssl, verify, cb) #endif -/* sslc does not support this function, OpenSSL has since 9.5.1 */ -#define RAND_status() 1 - #endif /* SSL_TOOLKIT_COMPAT_H */