From b320c3bba58a9fc687d4c7e7d9b0333cc2a3794e Mon Sep 17 00:00:00 2001 From: Doug MacEachern Date: Wed, 27 Mar 2002 03:04:24 +0000 Subject: [PATCH] sslc does not currently implement an SSL_set_state function git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@94203 13f79535-47bb-0310-9956-ffa450edef68 --- ssl_toolkit_compat.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ssl_toolkit_compat.h b/ssl_toolkit_compat.h index 06f9b5a6e16..ba9da85fcd8 100644 --- a/ssl_toolkit_compat.h +++ b/ssl_toolkit_compat.h @@ -57,6 +57,11 @@ #define modssl_X509_verify_cert(c) X509_verify_cert(c, NULL) +/* XXX: add configure check */ +#ifndef HAVE_SSL_SET_STATE +#define SSL_set_state(ssl, state) +#endif + #if SSLC_VERSION < 0x2000 #define X509_STORE_CTX_set_depth(st, d) -- 2.47.2