mirror of
https://github.com/anope/anope.git
synced 2026-06-28 01:36:37 +02:00
Fixed compile
This commit is contained in:
+2
-2
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user