X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Finspircd.cpp;h=898b4f455e1d03659cb364ec73e05efd3fdda3aa;hb=7f878af39e659176677913890e143a247add7bdc;hp=942ac55a6e05553edf63d51ea622e5379bdc74e7;hpb=b071a6acd805bde6119a66481768be13102d1c2b;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 942ac55a6..898b4f455 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -52,7 +52,6 @@ #include #include #include "xline.h" -#include "bancache.h" #include "socketengine.h" #include "socket.h" #include "command_parse.h" @@ -134,7 +133,6 @@ void InspIRCd::Cleanup() DeleteZero(this->XLines); DeleteZero(this->Parser); DeleteZero(this->Modules); - DeleteZero(this->BanCache); DeleteZero(this->SNO); DeleteZero(this->Config); DeleteZero(this->PI); @@ -263,7 +261,6 @@ InspIRCd::InspIRCd(int argc, char** argv) : this->Users = 0; this->Config = 0; this->SNO = 0; - this->BanCache = 0; this->Modules = 0; this->Parser = 0; this->XLines = 0; @@ -287,7 +284,6 @@ InspIRCd::InspIRCd(int argc, char** argv) : this->Config = new ServerConfig; this->SNO = new SnomaskManager; - this->BanCache = new BanCacheManager; this->Modules = new ModuleManager(); dynamic_reference_base::reset_all(); this->Parser = new CommandParser;