From cb0beaf7d9e81a8dfd999947630a3934c74a04ab Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Fri, 19 Jan 2001 22:32:15 +0000 Subject: [PATCH] The fast fix to get FirstBill back out of the gate. It brings up an issue I'll address to the list. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87748 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 e43aed2fb3..1af06390a3 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 */ -AP_CORE_DECLARE(int) ap_process_http_connection(conn_rec *); +AP_CORE_DECLARE_NONSTD(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 3231c5fa39..5c9f50bf01 100644 --- a/server/connection.c +++ b/server/connection.c @@ -230,7 +230,7 @@ int ap_pre_http_connection(conn_rec *c) return OK; } -AP_CORE_DECLARE(int) ap_process_http_connection(conn_rec *c) +AP_CORE_DECLARE_NONSTD(int) ap_process_http_connection(conn_rec *c) { request_rec *r; -- 2.50.1