mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
Forward port of changes in mod_ssl for Apache 1.3 up through mod_ssl
version 2.8.7-1.3.23. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93564 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -1587,7 +1587,11 @@ void ssl_callback_DelSessionCacheEntry(
|
||||
* SSL handshake and does SSL record layer stuff. We use it to
|
||||
* trace OpenSSL's processing in out SSL logfile.
|
||||
*/
|
||||
#if SSL_LIBRARY_VERSION >= 0x00907000
|
||||
void ssl_callback_LogTracingState(const SSL *ssl, int where, int rc)
|
||||
#else
|
||||
void ssl_callback_LogTracingState(SSL *ssl, int where, int rc)
|
||||
#endif
|
||||
{
|
||||
conn_rec *c;
|
||||
server_rec *s;
|
||||
@@ -1597,7 +1601,7 @@ void ssl_callback_LogTracingState(SSL *ssl, int where, int rc)
|
||||
/*
|
||||
* find corresponding server
|
||||
*/
|
||||
if ((c = (conn_rec *)SSL_get_app_data(ssl)) == NULL)
|
||||
if ((c = (conn_rec *)SSL_get_app_data((SSL *)ssl)) == NULL)
|
||||
return;
|
||||
s = c->base_server;
|
||||
if ((sc = mySrvConfig(s)) == NULL)
|
||||
|
Reference in New Issue
Block a user