From 5bb72e1caa582711dcb4996cd940202a11101f74 Mon Sep 17 00:00:00 2001 From: David Reid Date: Wed, 8 Nov 2000 11:48:09 +0000 Subject: [PATCH] Doh! Missed this from the last commit... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86868 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/http_core.c | 2 +- server/vhost.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/http/http_core.c b/modules/http/http_core.c index 74e2a94a1b..00aacf44d0 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -764,7 +764,7 @@ AP_DECLARE(const char *) ap_get_server_name(request_rec *r) return r->server->server_hostname; } -AP_DECLARE(unsigned) ap_get_server_port(const request_rec *r) +AP_DECLARE(apr_port_t) ap_get_server_port(const request_rec *r) { apr_port_t port; core_dir_config *d = diff --git a/server/vhost.c b/server/vhost.c index ede5b96f56..cd44c2a511 100644 --- a/server/vhost.c +++ b/server/vhost.c @@ -798,7 +798,7 @@ static int matches_aliases(server_rec *s, const char *host) * the ServerName and/or ServerAliases. */ AP_DECLARE(int) ap_matches_request_vhost(request_rec *r, const char *host, - unsigned port) + apr_port_t port) { server_rec *s; server_addr_rec *sar; -- 2.50.1