mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-13 04:29:03 -04:00
Ensure it cant happen the other way around, either
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6822 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
6e98307171
commit
ef8b080895
@ -266,8 +266,11 @@ void InspIRCd::DoBackgroundUserStuff(time_t TIME)
|
||||
bool ready = AllModulesReportReady(curr);
|
||||
if ((TIME > curr->signon) && (curr->registered == REG_NICKUSER) && (ready))
|
||||
{
|
||||
curr->WriteServ("NOTICE Auth :*** Could not resolve your hostname: Request timed out; using your IP address (%s) instead.", curr->GetIPString());
|
||||
curr->dns_done = true;
|
||||
if (!curr->dns_done)
|
||||
{
|
||||
curr->WriteServ("NOTICE Auth :*** Could not resolve your hostname: Request timed out; using your IP address (%s) instead.", curr->GetIPString());
|
||||
curr->dns_done = true;
|
||||
}
|
||||
this->stats->statsDnsBad++;
|
||||
curr->FullConnect();
|
||||
continue;
|
||||
|
Loading…
x
Reference in New Issue
Block a user