summaryrefslogtreecommitdiff
path: root/include/users.h
diff options
context:
space:
mode:
authorpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-24 04:01:45 +0000
committerpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-24 04:01:45 +0000
commit7f6344e3addae201daa77fab7d93c2908e19f441 (patch)
treea60845513b65496b935d2352ffa27a03a3b1313e /include/users.h
parent397a77259a21f730c8fe06d2df65ecf51119549c (diff)
Fix a bug in whowas that could desync list.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6091 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/users.h')
-rw-r--r--include/users.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/users.h b/include/users.h
index 80fbf43e0..d24a93fca 100644
--- a/include/users.h
+++ b/include/users.h
@@ -880,7 +880,7 @@ namespace irc
/** Sets of time and users in whowas list
*/
- typedef std::map<time_t,irc::string> whowas_users_fifo;
+ typedef std::deque<std::pair<time_t,irc::string> > whowas_users_fifo;
/** Called every hour by the core to remove expired entries
*/