]> git.ipfire.org Git - thirdparty/apache/httpd.git/commit
Fix a compile failure with recent OpenSSL and picky compilers
authorJeff Trawick <trawick@apache.org>
Fri, 4 Apr 2003 03:57:10 +0000 (03:57 +0000)
committerJeff Trawick <trawick@apache.org>
Fri, 4 Apr 2003 03:57:10 +0000 (03:57 +0000)
commit4901acb22acbea1bfc790c52a7ebecfa5caf37f6
treee5220932c4ff5626c121a35a66435b29846bc43c
parenta9a0a20c30fda70b942e88cd4e2fb2a1a3fbcc90
Fix a compile failure with recent OpenSSL and picky compilers
(e.g., OpenSSL 0.9.7a and xlc_r on AIX).

The OpenSSL info callback field changed recently from a generic
function pointer to a specific one, and ssl_callback_LogTracingState
wasn't quite right.

old:
ssl.h:        void (*info_callback)();

new:
ssl.h:        void (*info_callback)(const SSL *ssl,int type,int val);

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99201 13f79535-47bb-0310-9956-ffa450edef68
CHANGES
modules/ssl/mod_ssl.h
modules/ssl/ssl_engine_kernel.c