From 5832dc83ba2a2a6f9992c2c4ff2f5f158f32080b Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Thu, 30 Aug 2001 19:43:03 +0000 Subject: [PATCH] Fix a broken declaration (supress type conversion warning on win32). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90819 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/mod_proxy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxy/mod_proxy.h b/modules/proxy/mod_proxy.h index df81a0ad1d..3f01e9819a 100644 --- a/modules/proxy/mod_proxy.h +++ b/modules/proxy/mod_proxy.h @@ -135,7 +135,7 @@ struct proxy_remote { const char *scheme; /* the schemes handled by this proxy, or '*' */ const char *protocol; /* the scheme used to talk to this proxy */ const char *hostname; /* the hostname of this proxy */ - int port; /* the port for this proxy */ + apr_port_t port; /* the port for this proxy */ }; struct proxy_alias { -- 2.50.1