diff options
author | Ruediger Pluem <rpluem@apache.org> | 2008-03-05 09:53:16 +0100 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2008-03-05 09:53:16 +0100 |
commit | b18ee30e41819718de2f42c6f8d20519e168077b (patch) | |
tree | ab42907fa6a4279f0fe22ea2ea4e3b25c94b2a32 /modules/mappers | |
parent | return AUTHZ_GRANTED instead of OK from the LDAP nested group checking. (diff) | |
download | apache2-b18ee30e41819718de2f42c6f8d20519e168077b.tar.xz apache2-b18ee30e41819718de2f42c6f8d20519e168077b.zip |
* Add checkfile2 at the end of the struct and not in the middle of the struct.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@633791 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/mappers')
-rw-r--r-- | modules/mappers/mod_rewrite.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index b80b7c0a04..a2720ee4d7 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -226,7 +226,6 @@ typedef struct { const char *datafile; /* filename for map data files */ const char *dbmtype; /* dbm type for dbm map data files */ const char *checkfile; /* filename to check for map existence */ - const char *checkfile2; /* as above, NULL if only one file */ const char *cachename; /* for cached maps (txt/rnd/dbm) */ int type; /* the type of the map */ apr_file_t *fpin; /* in file pointer for program maps */ @@ -236,6 +235,8 @@ typedef struct { char *); char **argv; /* argv of the external rewrite map */ const char *dbdq; /* SQL SELECT statement for rewritemap */ + const char *checkfile2; /* filename to check for map existence + NULL if only one file */ } rewritemap_entry; /* special pattern types for RewriteCond */ |