]> granicus.if.org Git - apache/commitdiff
Remove a BUFF function that isn't used anyplace.
authorRyan Bloom <rbb@apache.org>
Wed, 1 Nov 2000 00:08:33 +0000 (00:08 +0000)
committerRyan Bloom <rbb@apache.org>
Wed, 1 Nov 2000 00:08:33 +0000 (00:08 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86779 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_protocol.c

index c3dd52a7fe818bde2d77118f4b65bc516cc79b42..81f61ab3008637ac9a5cefed7968534f11e44bfd 100644 (file)
@@ -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: