]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
toss ENUM_BITFIELD. used in one place (but didn't need to be used), and it
authorGreg Stein <gstein@apache.org>
Sat, 24 Feb 2001 01:38:49 +0000 (01:38 +0000)
committerGreg Stein <gstein@apache.org>
Sat, 24 Feb 2001 01:38:49 +0000 (01:38 +0000)
certainly wasn't namespace protected.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88295 13f79535-47bb-0310-9956-ffa450edef68

modules/metadata/mod_setenvif.c

index 2bb45e7160f5cd6c95a1259c4e5b55329e32772c..c0a3d149c60ed919177d02f3a4116af6c2817493 100644 (file)
@@ -142,11 +142,9 @@ typedef struct {
     char *name;                 /* header name */
     char *regex;                /* regex to match against */
     regex_t *preg;              /* compiled regex */
-    apr_table_t *features;            /* env vars to set (or unset) */
-    ENUM_BITFIELD(              /* is it a "special" header ? */
-       enum special,
-       special_type,4);
-    unsigned icase : 1;                /* ignoring case? */
+    apr_table_t *features;      /* env vars to set (or unset) */
+    enum special special_type;  /* is it a "special" header ? */
+    int icase;                  /* ignoring case? */
 } sei_entry;
 
 typedef struct {