1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

The development trunk of OpenSSL has tightened up the type safety of the STACK construct

and the functions that manipulate it.  Make httpd trunk compile against OpenSSL HEAD
as well as OpenSSL 0.9.8j.  Also, get rid of some warnings.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@748396 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sander Temme
2009-02-27 05:16:18 +00:00
parent c849173fdf
commit e171af3118
5 changed files with 13 additions and 13 deletions

View File

@@ -576,7 +576,7 @@ static void ssl_init_ctx_verify(server_rec *s,
ssl_die();
}
SSL_CTX_set_client_CA_list(ctx, (STACK *)ca_list);
SSL_CTX_set_client_CA_list(ctx, (STACK_OF(X509_NAME) *)ca_list);
}
/*