From: brain Date: Fri, 3 Feb 2006 14:33:34 +0000 (+0000) Subject: Typoes X-Git-Tag: v2.0.23~9045 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;ds=sidebyside;h=5a17e1b8bd690a573c91e5c69f2c150fe0516f7a;p=user%2Fhenk%2Fcode%2Finspircd.git Typoes git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3042 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/dnsqueue.cpp b/src/dnsqueue.cpp index cd6f696d6..71f227567 100644 --- a/src/dnsqueue.cpp +++ b/src/dnsqueue.cpp @@ -131,7 +131,7 @@ public: { strlcpy(usr->host,hostname.c_str(),MAXBUF); strlcpy(usr->dhost,hostname.c_str(),MAXBUF); - address_hash::iterator address = addrcache.find(usr->ip4); + address_cache::iterator address = addrcache.find(usr->ip4); if (address == addrcache.end()) { log(DEBUG,"Caching hostname %s -> %s",(char*)inet_ntoa(usr->ip4),hostname.c_str()); @@ -210,7 +210,7 @@ bool lookup_dns(std::string nick) if (u) { /* Check the cache */ - address_hash::iterator address = addrcache.find(u->ip4); + address_cache::iterator address = addrcache.find(u->ip4); if (address != addrcache.end()) { /* Theyre in the cache, dont waste a lookup */