mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
Make the server work without asking for buffered file I/O. This removes
all APR_BUFFERED flags from the server, and it fixes a minor bug in the ungetchar patch (I forgot a file when comitting). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84933 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -82,7 +82,7 @@ static int asis_handler(request_rec *r)
|
||||
return NOT_FOUND;
|
||||
}
|
||||
|
||||
if ((status = ap_open(&f, r->filename, APR_READ | APR_BUFFERED,
|
||||
if ((status = ap_open(&f, r->filename, APR_READ,
|
||||
APR_OS_DEFAULT, r->pool)) != APR_SUCCESS) {
|
||||
ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r,
|
||||
"file permissions deny server access: %s", r->filename);
|
||||
|
Reference in New Issue
Block a user