From ddfb16de1a61a9b80ece0ba6e5fd34326abf5f18 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 14 Mar 2011 20:16:38 -0400 Subject: Fixed compile --- src/init.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/init.cpp') diff --git a/src/init.cpp b/src/init.cpp index 05b15aecb..31d525c7b 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -57,9 +57,9 @@ void introduce_user(const Anope::string &user) } /* We make the bots go online */ - for (patricia_tree::iterator it(UserListByNick); it.next();) + for (Anope::insensitive_map::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); -- cgit