Commit 48a8c86d authored by Bill Stoddard's avatar Bill Stoddard
Browse files

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
parent 16b9dfa0
Loading
Loading
Loading
Loading
+1 −1
Changes for modules/mappers/mod_rewrite.c: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -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;
    }