From 12737ab4ad61a0d8a908c8a21594c7012e21eb3c Mon Sep 17 00:00:00 2001 From: brain Date: Fri, 11 Aug 2006 01:35:01 +0000 Subject: ConfigReader and FileReader now take InspIRCd* to their constructors git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4865 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_censor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/m_censor.cpp') diff --git a/src/modules/m_censor.cpp b/src/modules/m_censor.cpp index 796224890..d227a2347 100644 --- a/src/modules/m_censor.cpp +++ b/src/modules/m_censor.cpp @@ -203,10 +203,10 @@ class ModuleCensor : public Module * reload our config file on rehash - we must destroy and re-allocate the classes * to call the constructor again and re-read our data. */ - ConfigReader* Conf = new ConfigReader; + ConfigReader* Conf = new ConfigReader(ServerInstance); std::string Censorfile = Conf->ReadValue("censor","file",0); // this automatically re-reads the configuration file into the class - ConfigReader* MyConf = new ConfigReader(Censorfile); + ConfigReader* MyConf = new ConfigReader(ServerInstance, Censorfile); if ((Censorfile == "") || (!MyConf->Verify())) { CensorException e; -- cgit v1.3.1-10-gc9f91