]> granicus.if.org Git - apache/commitdiff
Apache hooks return int: so s/apr_status_t/int/
authorStas Bekman <stas@apache.org>
Sat, 1 Mar 2003 00:43:03 +0000 (00:43 +0000)
committerStas Bekman <stas@apache.org>
Sat, 1 Mar 2003 00:43:03 +0000 (00:43 +0000)
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

index a7c1b3f21f6cef48bd7336dbea9c4b21415a2ed5..8d88e147fb4b8f69c378f4cbeac36f4dd8a250bb 100644 (file)
@@ -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);