From: Greg Stein Date: Sat, 24 Feb 2001 01:38:49 +0000 (+0000) Subject: toss ENUM_BITFIELD. used in one place (but didn't need to be used), and it X-Git-Tag: 2.0.12~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fcbb49262cd99b43fd61739550033cc6f9ccf31;p=thirdparty%2Fapache%2Fhttpd.git toss ENUM_BITFIELD. used in one place (but didn't need to be used), and it certainly wasn't namespace protected. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88295 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/metadata/mod_setenvif.c b/modules/metadata/mod_setenvif.c index 2bb45e7160f..c0a3d149c60 100644 --- a/modules/metadata/mod_setenvif.c +++ b/modules/metadata/mod_setenvif.c @@ -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 {