From ce44198e27457c47c55fdaf59c4970b788ae3991 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Fri, 19 Jan 2001 18:38:34 +0000 Subject: [PATCH] By popular review git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87739 13f79535-47bb-0310-9956-ffa450edef68 --- include/http_connection.h | 2 +- server/connection.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/http_connection.h b/include/http_connection.h index 8f0d2264fd..e43aed2fb3 100644 --- a/include/http_connection.h +++ b/include/http_connection.h @@ -98,7 +98,7 @@ int ap_pre_http_connection(conn_rec *); * @param c The connection on which the request is read * @return OK or DECLINED */ -int ap_process_http_connection(conn_rec *); +AP_CORE_DECLARE(int) ap_process_http_connection(conn_rec *); AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c); diff --git a/server/connection.c b/server/connection.c index e7e49cea38..3231c5fa39 100644 --- a/server/connection.c +++ b/server/connection.c @@ -230,7 +230,7 @@ int ap_pre_http_connection(conn_rec *c) return OK; } -int ap_process_http_connection(conn_rec *c) +AP_CORE_DECLARE(int) ap_process_http_connection(conn_rec *c) { request_rec *r; -- 2.50.1