mirror of
https://github.com/anope/anope.git
synced 2026-06-27 23:56:39 +02:00
Fixed compile
This commit is contained in:
@@ -644,9 +644,9 @@ class ProtoPlexus : public Module
|
||||
|
||||
void OnServerSync(Server *s)
|
||||
{
|
||||
for (patricia_tree<User *, ci::ci_char_traits>::iterator it(UserListByNick); it.next();)
|
||||
for (Anope::insensitive_map<User *>::iterator it = UserListByNick.begin(); it != UserListByNick.end(); ++it)
|
||||
{
|
||||
User *u = *it;
|
||||
User *u = it->second;
|
||||
if (u->server == s && !u->IsIdentified())
|
||||
validate_user(u);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user