From fb96a6c13a7df520e4d7b693b2458bdc67b70e50 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Thu, 30 Aug 2001 19:48:02 +0000 Subject: [PATCH] Undo another int type'ed port (and format a little structure for legibility). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90820 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/proxy_http.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/proxy/proxy_http.c b/modules/proxy/proxy_http.c index 3603c32b21..5ff0b0a448 100644 --- a/modules/proxy/proxy_http.c +++ b/modules/proxy/proxy_http.c @@ -68,11 +68,11 @@ int ap_proxy_http_handler(request_rec *r, proxy_server_conf *conf, apr_port_t proxyport); typedef struct { - const char *name; - int port; + const char *name; + apr_port_t port; apr_sockaddr_t *addr; - apr_socket_t *sock; - int close; + apr_socket_t *sock; + int close; } proxy_http_conn_t; /* -- 2.50.1