summaryrefslogtreecommitdiff
path: root/src/cull_list.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-10 22:40:57 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-10 22:40:57 +0000
commitf9636a2eff46f6829bf9e01c711ab1ba45a7d50a (patch)
tree4fd9dc8529e9e0adbd5acb47b5fa0f960aef195c /src/cull_list.cpp
parent24b1fbeec8e61e9636daaf606778c324d3ae3042 (diff)
So much stuff changed in this one, i forgot most of it.
Oh yeah, main thing is ModeHandler and ModeWatcher classes now take an InspIRCd* to their constructor git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4858 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cull_list.cpp')
-rw-r--r--src/cull_list.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/cull_list.cpp b/src/cull_list.cpp
index 18c86f631..50ecfe518 100644
--- a/src/cull_list.cpp
+++ b/src/cull_list.cpp
@@ -38,8 +38,6 @@ using namespace std;
#include "typedefs.h"
#include "cull_list.h"
-extern InspIRCd* ServerInstance;
-
/*
* In current implementation of CullList, this isn't used. It did odd things with a lot of sockets.
*/
@@ -98,7 +96,7 @@ std::string& CullItem::GetReason()
return this->reason;
}
-CullList::CullList()
+CullList::CullList(InspIRCd* Instance) : ServerInstance(Instance)
{
list.clear();
exempt.clear();