diff options
| author | 2008-02-11 09:41:58 +0000 | |
|---|---|---|
| committer | 2008-02-11 09:41:58 +0000 | |
| commit | 5db1d322be106c8462dc691072f9415dc0766ed4 (patch) | |
| tree | 311cb5e6d5307d3e2b77652a9a2461a324c5ab2e /src/modules/m_dnsbl.cpp | |
| parent | Tidy up run-cc error reporting (eg: only say 'An error occured' once, and mak... (diff) | |
| download | inspircd++-5db1d322be106c8462dc691072f9415dc0766ed4.tar.gz inspircd++-5db1d322be106c8462dc691072f9415dc0766ed4.tar.bz2 inspircd++-5db1d322be106c8462dc691072f9415dc0766ed4.zip | |
Add -Wshadow to cflags, and fix a bunch of warnings that come with it. Add a note to webirc that needs looking at.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8892 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_dnsbl.cpp')
| -rw-r--r-- | src/modules/m_dnsbl.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/modules/m_dnsbl.cpp b/src/modules/m_dnsbl.cpp index 40f5c2910..1c6939220 100644 --- a/src/modules/m_dnsbl.cpp +++ b/src/modules/m_dnsbl.cpp @@ -51,8 +51,8 @@ class DNSBLResolver : public Resolver public: - DNSBLResolver(Module *me, InspIRCd *ServerInstance, const std::string &hostname, User* u, int userfd, DNSBLConfEntry *conf, bool &cached) - : Resolver(ServerInstance, hostname, DNS_QUERY_A, cached, me) + DNSBLResolver(Module *me, InspIRCd *Instance, const std::string &hostname, User* u, int userfd, DNSBLConfEntry *conf, bool &cached) + : Resolver(Instance, hostname, DNS_QUERY_A, cached, me) { theirfd = userfd; them = u; @@ -220,7 +220,6 @@ class ModuleDNSBL : public Module */ void ClearEntries() { - std::vector<DNSBLConfEntry *>::iterator i; for (std::vector<DNSBLConfEntry *>::iterator i = DNSBLConfEntries.begin(); i != DNSBLConfEntries.end(); i++) delete *i; DNSBLConfEntries.clear(); |
