From: Ryan Bloom Date: Wed, 1 Nov 2000 00:08:33 +0000 (+0000) Subject: Remove a BUFF function that isn't used anyplace. X-Git-Tag: APACHE_2_0_ALPHA_8~215 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ef77218c16f968b38de03c0a3039520677ca4a4;p=thirdparty%2Fapache%2Fhttpd.git Remove a BUFF function that isn't used anyplace. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86779 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index c3dd52a7fe8..81f61ab3008 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -152,22 +152,6 @@ static int checked_bflush(request_rec *r) return 0; } -static int checked_bputs(const char *str, request_rec *r) -{ - int rcode; - - if (r->connection->aborted) - return EOF; - - rcode = ap_bputs(str, r->connection->client); - if (rcode < 0) { - check_first_conn_error(r, "checked_bputs", 0); - return EOF; - } - SET_BYTES_SENT(r); - return rcode; -} - /* * Builds the content-type that should be sent to the client from the * content-type specified. The following rules are followed: