diff options
author | Adam <Adam@anope.org> | 2013-05-05 01:58:45 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-05-05 01:58:45 -0400 |
commit | 10b5b00db4f6f38f33b122f1a2cbcb788fc7c0eb (patch) | |
tree | ab41959b1ec6049afb119ce1a467fade698d3395 /src | |
parent | 2044b4d3ad9dbdfd5c6c6573261a7c4bfd9e2878 (diff) |
Dont check for noquit/quitstorm, check and be sure all users are gone regardless
Diffstat (limited to 'src')
-rw-r--r-- | src/servers.cpp | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/src/servers.cpp b/src/servers.cpp index 2f87d66e4..971ee83d9 100644 --- a/src/servers.cpp +++ b/src/servers.cpp @@ -125,22 +125,19 @@ Server::~Server() { Log(this, "quit") << "quit from " << (this->uplink ? this->uplink->GetName() : "no uplink") << " for " << this->quit_reason; - if (Servers::Capab.count("NOQUIT") > 0 || Servers::Capab.count("QS") > 0) + for (user_map::const_iterator it = UserListByNick.begin(); it != UserListByNick.end(); ++it) { - for (user_map::const_iterator it = UserListByNick.begin(); it != UserListByNick.end(); ++it) - { - User *u = it->second; + User *u = it->second; - if (u->server == this) - { - u->Quit(this->quit_reason); - u->server = NULL; - } + if (u->server == this) + { + u->Quit(this->quit_reason); + u->server = NULL; } - - Log(LOG_DEBUG) << "Finished removing all users for " << this->GetName(); } + Log(LOG_DEBUG) << "Finished removing all users for " << this->GetName(); + if (this->uplink) this->uplink->DelLink(this); |