Hi,
can someone make a backport of 630858
* 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.
--- httpd/httpd/trunk/modules/ssl/ssl_engine_init.c 2008/02/22 11:36:51
630163
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_init.c 2008/02/25 14:18:32
630858
@@ -1235,7 +1235,7 @@
/*
* Cleanup
*/
- sk_X509_NAME_set_cmp_func(ca_list, NULL);
+ (void) sk_X509_NAME_set_cmp_func(ca_list, NULL);
return ca_list;
}
thanks