aboutsummaryrefslogtreecommitdiffstats
path: root/src/cull_list.cpp
diff options
context:
space:
mode:
authorGravatar brain2006-08-09 16:35:24 +0000
committerGravatar brain2006-08-09 16:35:24 +0000
commit1cbf29e3cd070c12437a657b47fc433008b2c74d (patch)
tree22b7a435ffd8bfa7dd97f2457b73df564753eddc /src/cull_list.cpp
parentMove fd_ref_table into class InspIRCd* (diff)
downloadinspircd++-1cbf29e3cd070c12437a657b47fc433008b2c74d.tar.gz
inspircd++-1cbf29e3cd070c12437a657b47fc433008b2c74d.tar.bz2
inspircd++-1cbf29e3cd070c12437a657b47fc433008b2c74d.zip
Move clientlist and chanlist into InspIRCd*
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4818 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cull_list.cpp')
-rw-r--r--src/cull_list.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cull_list.cpp b/src/cull_list.cpp
index e6b105925..bfa37e51a 100644
--- a/src/cull_list.cpp
+++ b/src/cull_list.cpp
@@ -40,7 +40,6 @@ using namespace std;
#include "cull_list.h"
extern InspIRCd* ServerInstance;
-extern user_hash clientlist;
/*
* In current implementation of CullList, this isn't used. It did odd things with a lot of sockets.
@@ -52,7 +51,7 @@ bool CullList::IsValid(userrec* user)
if (es != exempt.end())
esignon = es->second;
- for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
+ for (user_hash::iterator u = ServerInstance->clientlist.begin(); u != ServerInstance->clientlist.end(); u++)
{
/*
* BUGFIX