1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 01:36:37 +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
@@ -57,9 +57,9 @@ void introduce_user(const Anope::string &user)
}
/* We make the bots go online */
for (patricia_tree<User *, ci::ci_char_traits>::iterator it(UserListByNick); it.next();)
for (Anope::insensitive_map<User *>::iterator it = UserListByNick.begin(), it_end = UserListByNick.end(); it != it_end; ++it)
{
User *u = *it;
User *u = it->second;
ircdproto->SendClientIntroduction(u, ircd->pseudoclient_mode);