You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2020/09/01 20:27:28 UTC

svn commit: r1881379 - /httpd/httpd/trunk/modules/ssl/ssl_engine_vars.c

Author: jailletc36
Date: Tue Sep  1 20:27:27 2020
New Revision: 1881379

URL: http://svn.apache.org/viewvc?rev=1881379&view=rev
Log:
Fix a few warnings on 64 bits windows compilation

Modified:
    httpd/httpd/trunk/modules/ssl/ssl_engine_vars.c

Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_vars.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_engine_vars.c?rev=1881379&r1=1881378&r2=1881379&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_vars.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_vars.c Tue Sep  1 20:27:27 2020
@@ -673,7 +673,8 @@ static const char *ssl_var_lookup_ssl_ce
 
 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;