]> granicus.if.org Git - apache/commitdiff
* Add checkfile2 at the end of the struct and not in the middle of the struct.
authorRuediger Pluem <rpluem@apache.org>
Wed, 5 Mar 2008 08:53:16 +0000 (08:53 +0000)
committerRuediger Pluem <rpluem@apache.org>
Wed, 5 Mar 2008 08:53:16 +0000 (08:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@633791 13f79535-47bb-0310-9956-ffa450edef68

modules/mappers/mod_rewrite.c

index b80b7c0a0456bf1323ee0607a9e666e219d8c1e5..a2720ee4d776215d5dd9f04738de0dbb6cd29cc9 100644 (file)
@@ -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 */