From: William A. Rowe Jr Date: Thu, 30 Aug 2001 19:43:03 +0000 (+0000) Subject: Fix a broken declaration (supress type conversion warning on win32). X-Git-Tag: 2.0.26~377 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5832dc83ba2a2a6f9992c2c4ff2f5f158f32080b;p=apache 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 --- 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 {