From: Christophe Jaillet Date: Tue, 1 Sep 2020 20:27:27 +0000 (+0000) Subject: Fix a few warnings on 64 bits windows compilation X-Git-Tag: 2.5.0-alpha2-ci-test-only~1218 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d90ee921b11dd60328667b8d32e52ec3e775cc5;p=thirdparty%2Fapache%2Fhttpd.git Fix a few warnings on 64 bits windows compilation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1881379 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_vars.c b/modules/ssl/ssl_engine_vars.c index 0583481f231..2e5e06967bf 100644 --- a/modules/ssl/ssl_engine_vars.c +++ b/modules/ssl/ssl_engine_vars.c @@ -673,7 +673,8 @@ static const char *ssl_var_lookup_ssl_cert_dn(apr_pool_t *p, X509_NAME *xsname, static const char *ssl_var_lookup_ssl_cert_san(apr_pool_t *p, X509 *xs, const char *var) { - int type, numlen; + int type; + apr_size_t numlen; const char *onf = NULL; apr_array_header_t *entries;