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-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fe199cf8e39b9f50a5045c0eae93b6303ad7585d;p=apache 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 c3dd52a7fe..81f61ab300 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: