diff options
| author | 2006-08-09 21:50:16 +0000 | |
|---|---|---|
| committer | 2006-08-09 21:50:16 +0000 | |
| commit | eb28eaea35d9d109a0b7b890de9d957d562da675 (patch) | |
| tree | e9df50a9db5227531a92d40aec83bbc611f127b0 /src/dns.cpp | |
| parent | Fix passing wrong instance to resolver (diff) | |
| download | inspircd++-eb28eaea35d9d109a0b7b890de9d957d562da675.tar.gz inspircd++-eb28eaea35d9d109a0b7b890de9d957d562da675.tar.bz2 inspircd++-eb28eaea35d9d109a0b7b890de9d957d562da675.zip | |
Passing invalid instance to dns isnt a good idea
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4825 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/dns.cpp')
| -rw-r--r-- | src/dns.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dns.cpp b/src/dns.cpp index 882aee1a7..9bc81e453 100644 --- a/src/dns.cpp +++ b/src/dns.cpp @@ -835,7 +835,7 @@ DNS::~DNS() /* High level abstraction of dns used by application at large */ Resolver::Resolver(InspIRCd* Instance, const std::string &source, QueryType qt) : ServerInstance(Instance), input(source), querytype(qt) { - log(DEBUG,"Instance: %08x %08x %08x",Instance, ServerInstance, ServerInstance->Res); + log(DEBUG,"Instance: %08x %08x",Instance, ServerInstance); insp_inaddr binip; |
