diff options
author | Ken Coar <coar@apache.org> | 2001-05-19 19:08:33 +0200 |
---|---|---|
committer | Ken Coar <coar@apache.org> | 2001-05-19 19:08:33 +0200 |
commit | da47986440649795a66e3e0a66e6462788441c36 (patch) | |
tree | 62e8985661956303744b84fbb5b2f155dd71b407 /modules/http/http_core.c | |
parent | Cleanup. (diff) | |
download | apache2-da47986440649795a66e3e0a66e6462788441c36.tar.xz apache2-da47986440649795a66e3e0a66e6462788441c36.zip |
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
Diffstat (limited to 'modules/http/http_core.c')
-rw-r--r-- | modules/http/http_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http/http_core.c b/modules/http/http_core.c index f5948973ab..f59e2533d3 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) |