can't check the return code.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86862
13f79535-47bb-0310-9956-
ffa450edef68
ap_set_last_modified(r);
ap_set_etag(r);
apr_table_setn(r->headers_out, "Accept-Ranges", "bytes");
- if (((errstatus = ap_meets_conditions(r)) != OK)
- || (errstatus = ap_set_content_length(r, r->finfo.size))) {
+ ap_set_content_length(r, r->finfo.size);
+ if ((errstatus = ap_meets_conditions(r)) != OK) {
apr_close(fd);
return errstatus;
}