]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix a few warnings on 64 bits windows compilation
authorChristophe Jaillet <jailletc36@apache.org>
Tue, 1 Sep 2020 20:27:27 +0000 (20:27 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Tue, 1 Sep 2020 20:27:27 +0000 (20:27 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1881379 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_vars.c

index 0583481f23124c3c7fcf741dfc4aa281fdd570e3..2e5e06967bf0624b86173dc66a506880d0c71aae 100644 (file)
@@ -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;