diff options
author | Bill Stoddard <stoddard@apache.org> | 2000-04-07 04:33:59 +0200 |
---|---|---|
committer | Bill Stoddard <stoddard@apache.org> | 2000-04-07 04:33:59 +0200 |
commit | e0c99ce6c8fcd06130dc7b42ace3ed3c69830ce6 (patch) | |
tree | d063a87e1e10b35a9a3acb42ac267610ff1e8a50 /modules/mappers/mod_rewrite.c | |
parent | Make the server work without asking for buffered file I/O. This removes (diff) | |
download | apache2-e0c99ce6c8fcd06130dc7b42ace3ed3c69830ce6.tar.xz apache2-e0c99ce6c8fcd06130dc7b42ace3ed3c69830ce6.zip |
Get Apache on Windows compiling again after the patch eliminating
buffered file i/o.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84934 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/mappers/mod_rewrite.c')
-rw-r--r-- | modules/mappers/mod_rewrite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index f03763e108..4232c80e9c 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -2901,7 +2901,7 @@ static char *lookup_map_txtfile(request_rec *r, char *file, char *key) char *curkey; char *curval; - rc = ap_open(&fp, file, APR_READ | APR_BUFFERED, APR_OS_DEFAULT, r->pool); + rc = ap_open(&fp, file, APR_READ, APR_OS_DEFAULT, r->pool); if (rc != APR_SUCCESS) { return NULL; } |