From: Ken Coar Date: Sat, 19 May 2001 17:08:33 +0000 (+0000) Subject: Fix function type to match hook declaration. X-Git-Tag: 2.0.19~216 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da47986440649795a66e3e0a66e6462788441c36;p=thirdparty%2Fapache%2Fhttpd.git Fix function type to match hook declaration. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89164 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_core.c b/modules/http/http_core.c index f5948973ab6..f59e2533d30 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -250,7 +250,7 @@ static apr_status_t chunk_filter(ap_filter_t *f, apr_bucket_brigade *b) static const char *http_method(const request_rec *r) { return "http"; } -static unsigned short http_port(const request_rec *r) +static apr_port_t http_port(const request_rec *r) { return DEFAULT_HTTP_PORT; } static int ap_pre_http_connection(conn_rec *c)