diff options
author | Adam <Adam@anope.org> | 2010-11-11 19:49:00 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-11-11 19:49:00 -0500 |
commit | 8662b0989ed9725b13be203b40836a96c894f733 (patch) | |
tree | 2a9aae4e71cb10364db6fc46e28c96646b94daf8 | |
parent | 12c53148635e5a7a7c69931d0cf49a7ffb1f3e1a (diff) |
Removed an unused variable
-rw-r--r-- | src/dns.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/dns.cpp b/src/dns.cpp index 5bdd2a4eb..b37a0bde6 100644 --- a/src/dns.cpp +++ b/src/dns.cpp @@ -559,7 +559,6 @@ void DNSManager::Tick(time_t now) for (std::multimap<Anope::string, DNSRecord *>::iterator it = this->cache.begin(), it_next; it != this->cache.end(); it = it_next) { - Anope::string host = it->first; DNSRecord *req = it->second; it_next = it; ++it_next; |