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

Fix compiler warning when using OpenSSL 1.1.0.

The old compatibility macro check no longer works,
because those are now actual functions, so an
ifndef is not the correct check.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1729435 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rainer Jung
2016-02-09 18:10:11 +00:00
parent 8350ace9c7
commit 3afb174383
2 changed files with 3 additions and 5 deletions

View File

@@ -172,10 +172,6 @@ int ssl_stapling_init_cert(server_rec *s, apr_pool_t *p, apr_pool_t *ptemp,
apr_pool_cleanup_null);
if (aia) {
/* allocate uri from the pconf pool */
/* XXX: OpenSSL 1.1.0: Compiler warning: passing argument 1 of 'sk_value'
* from incompatible pointer type expected 'const struct _STACK *'
* but argument is of type 'struct stack_st_OPENSSL_STRING *'
*/
cinf->uri = apr_pstrdup(p, sk_OPENSSL_STRING_value(aia, 0));
X509_email_free(aia);
}