diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-02-18 21:16:29 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-02-18 21:16:29 +0000 |
commit | fdeb045add7198e20baf78c9dd8c3969ed0028f2 (patch) | |
tree | 02d410bcba912e0d1486fa4b9cd8c459a2f69d03 /include | |
parent | c678dd256fefdf4d60330540ffd13104290009a7 (diff) |
- hostmask.c: get rid of this (type & ~0x1) hack
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2996 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'include')
-rw-r--r-- | include/conf.h | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/include/conf.h b/include/conf.h index b28d640..b9af053 100644 --- a/include/conf.h +++ b/include/conf.h @@ -110,20 +110,19 @@ enum maskitem_type { - CONF_RESERVED = 1 << 0, /* XXX */ - CONF_CLIENT = 1 << 1, - CONF_SERVER = 1 << 2, - CONF_KLINE = 1 << 3, - CONF_DLINE = 1 << 4, - CONF_EXEMPT = 1 << 5, - CONF_CLUSTER = 1 << 6, - CONF_XLINE = 1 << 7, - CONF_ULINE = 1 << 8, - CONF_GLINE = 1 << 9, - CONF_CRESV = 1 << 10, - CONF_NRESV = 1 << 11, - CONF_SERVICE = 1 << 12, - CONF_OPER = 1 << 13, + CONF_CLIENT = 1 << 0, + CONF_SERVER = 1 << 1, + CONF_KLINE = 1 << 2, + CONF_DLINE = 1 << 3, + CONF_EXEMPT = 1 << 4, + CONF_CLUSTER = 1 << 5, + CONF_XLINE = 1 << 6, + CONF_ULINE = 1 << 7, + CONF_GLINE = 1 << 8, + CONF_CRESV = 1 << 9, + CONF_NRESV = 1 << 10, + CONF_SERVICE = 1 << 11, + CONF_OPER = 1 << 12, }; struct conf_parser_context |