diff options
| author | 2006-12-18 12:17:06 +0000 | |
|---|---|---|
| committer | 2006-12-18 12:17:06 +0000 | |
| commit | 52d979a28200288ed38d8292f0727a804df76a9b (patch) | |
| tree | 01fd159906e23a9bc90ce89c81c8806285b39278 /src/modules/m_dnsbl.cpp | |
| parent | Fix for new m_helpop (diff) | |
| download | inspircd++-52d979a28200288ed38d8292f0727a804df76a9b.tar.gz inspircd++-52d979a28200288ed38d8292f0727a804df76a9b.tar.bz2 inspircd++-52d979a28200288ed38d8292f0727a804df76a9b.zip | |
Fix bug in m_dnsbl: Only the first <dnsbl> tag would be processed.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6041 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_dnsbl.cpp')
| -rw-r--r-- | src/modules/m_dnsbl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_dnsbl.cpp b/src/modules/m_dnsbl.cpp index 1760f5a83..b4d993703 100644 --- a/src/modules/m_dnsbl.cpp +++ b/src/modules/m_dnsbl.cpp @@ -242,7 +242,7 @@ class ModuleDNSBL : public Module /* add it, all is ok */ DNSBLConfEntries.push_back(e); delete MyConf; - return; + continue; } /* delete and drop it, error somewhere */ |
