diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-12-23 14:26:36 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-12-23 14:26:36 +0000 |
commit | 6ab5c544269946d55c4dd5588f0f1389e3287ef4 (patch) | |
tree | 4152b35a43e3819a0f526e0881b3f206b93725cb /modules | |
parent | 6a8fbe2b113f09eef738c3cb4ffb7f1371e2013c (diff) |
- Fixed core on UNDLINE
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1703 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 f5ca38f..b91bf23 100644 --- a/modules/m_dline.c +++ b/modules/m_dline.c @@ -113,7 +113,7 @@ remove_dline_match(const char *host) else piphost = NULL; - if ((conf = find_conf_by_address(host, piphost, CONF_DLINE, aftype, NULL, NULL, 0))) + if ((conf = find_conf_by_address(host, piphost, CONF_DLINE | 1, aftype, NULL, NULL, 0))) { if (IsConfDatabase(conf)) { |