mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
* modules/ssl/ssl_engine_init.c (ssl_init_FindCAList): Cast return
value of sk_X509_NAME_set_cmp_func to void, to avoid warnings with recent version of OpenSSL. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630858 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -1235,7 +1235,7 @@ STACK_OF(X509_NAME) *ssl_init_FindCAList(server_rec *s,
|
||||
/*
|
||||
* Cleanup
|
||||
*/
|
||||
sk_X509_NAME_set_cmp_func(ca_list, NULL);
|
||||
(void) sk_X509_NAME_set_cmp_func(ca_list, NULL);
|
||||
|
||||
return ca_list;
|
||||
}
|
||||
|
Reference in New Issue
Block a user