Commit 1924da24 authored by Greg Stein's avatar Greg Stein
Browse files

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
parent 803c5e59
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -143,10 +143,8 @@ typedef struct {
    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? */
    enum special special_type;  /* is it a "special" header ? */
    int icase;                  /* ignoring case? */
} sei_entry;

typedef struct {