1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Fix the remaining APR_FINFO_NORM occurances. Again, followup is needed

to actually test any field outside the scope of APR_FINFO_MIN.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87935 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2001-01-31 23:11:05 +00:00
parent 2b16dac8e1
commit d038b40a6f
4 changed files with 13 additions and 13 deletions

View File

@@ -1271,7 +1271,7 @@ int ap_proxy_cache_send(request_rec *r, ap_cache_el *c)
len = 2;
apr_send(fp, CRLF, &len);
/* send data */
apr_getfileinfo(&finfo, APR_FINFO_NORM, cachefp);
apr_getfileinfo(&finfo, APR_FINFO_MIN, cachefp);
if(!r->header_only && ap_send_fd(cachefp, r, offset, finfo.size, &len))
return HTTP_INTERNAL_SERVER_ERROR;
return OK;