diff options
| author | 2006-08-09 16:35:24 +0000 | |
|---|---|---|
| committer | 2006-08-09 16:35:24 +0000 | |
| commit | 1cbf29e3cd070c12437a657b47fc433008b2c74d (patch) | |
| tree | 22b7a435ffd8bfa7dd97f2457b73df564753eddc /src/cull_list.cpp | |
| parent | Move fd_ref_table into class InspIRCd* (diff) | |
| download | inspircd++-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.cpp | 3 |
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 |
