From: Joe Orton Date: Sat, 28 Feb 2004 12:08:30 +0000 (+0000) Subject: * server/connection.c (ap_flush_conn): Fix typo. X-Git-Tag: pre_ajp_proxy~615 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f327e43a491820f3696ef6bad76022086b3f90b;p=thirdparty%2Fapache%2Fhttpd.git * server/connection.c (ap_flush_conn): Fix typo. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102800 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/connection.c b/server/connection.c index 07e3341878e..b444c0b7582 100644 --- a/server/connection.c +++ b/server/connection.c @@ -77,7 +77,7 @@ AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c) APR_BRIGADE_INSERT_TAIL(bb, b); /* End Of Connection bucket */ - b = apr_bucket_eoc_create(c->bucket_alloc); + b = ap_bucket_eoc_create(c->bucket_alloc); APR_BRIGADE_INSERT_TAIL(bb, b); ap_pass_brigade(c->output_filters, bb);