git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86779
13f79535-47bb-0310-9956-
ffa450edef68
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: