From 0e0208a0a8ab99bb926a1ecba54a72a68bc6d9b0 Mon Sep 17 00:00:00 2001 From: Stas Bekman Date: Sat, 1 Mar 2003 00:43:03 +0000 Subject: [PATCH] Apache hooks return int: so s/apr_status_t/int/ PR: Obtained from: Submitted by: Reviewed by: trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98860 13f79535-47bb-0310-9956-ffa450edef68 --- server/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/connection.c b/server/connection.c index a7c1b3f21f..8d88e147fb 100644 --- a/server/connection.c +++ b/server/connection.c @@ -199,7 +199,7 @@ AP_DECLARE(void) ap_lingering_close(conn_rec *c) AP_CORE_DECLARE(void) ap_process_connection(conn_rec *c, void *csd) { - apr_status_t rc; + int rc; ap_update_vhost_given_ip(c); rc = ap_run_pre_connection(c, csd); -- 2.40.0