]> 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)
commit8739b4c6256f2c4c5f53399268fba2304f64a22b
treef80601d9ad42d2333f34b60501f554f511bed043
parent6eaa5d8a6d13a43ad2f2dd9a08d4435624cdb36d
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/modules/ssl@99201 13f79535-47bb-0310-9956-ffa450edef68
mod_ssl.h
ssl_engine_kernel.c