1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 23:56:39 +02:00

Fixed compile

This commit is contained in:
Adam
2011-03-14 20:16:38 -04:00
parent 2555d0d637
commit ddfb16de1a
32 changed files with 122 additions and 158 deletions
+2 -2
View File
@@ -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);
}