From: William A. Rowe Jr Date: Fri, 19 Jan 2001 22:32:15 +0000 (+0000) Subject: The fast fix to get FirstBill back out of the gate. It brings up an X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~156 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e62172bbdde0f7dc64620bba56036eb99561ea6b;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/include/http_connection.h b/include/http_connection.h index e43aed2fb31..1af06390a37 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 3231c5fa390..5c9f50bf01a 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;