diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-02-18 21:19:38 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-02-18 21:19:38 +0000 |
commit | 8cbbaa1da22b69ed0e6fb98955f619364e67217c (patch) | |
tree | 041abb7e8c1e626665ae0709f3abb47c7d63f4bd /modules | |
parent | fdeb045add7198e20baf78c9dd8c3969ed0028f2 (diff) |
- m_dline.c: get rid of this (type & ~0x1) hack
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2998 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules')
-rw-r--r-- | modules/m_dline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/m_dline.c b/modules/m_dline.c index 35fe431..ffa8238 100644 --- a/modules/m_dline.c +++ b/modules/m_dline.c @@ -114,7 +114,7 @@ remove_dline_match(const char *host) else piphost = NULL; - if ((conf = find_conf_by_address(host, piphost, CONF_DLINE | 1, aftype, NULL, NULL, 0))) + if ((conf = find_conf_by_address(host, piphost, CONF_DLINE, aftype, NULL, NULL, 0))) { if (IsConfDatabase(conf)) { |