]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Old stuff left behind
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Sat, 4 Mar 2006 17:29:53 +0000 (17:29 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Sat, 4 Mar 2006 17:29:53 +0000 (17:29 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3447 e03df62e-2008-0410-955e-edbf42e46eb7

src/modules.cpp

index e5a0145c02cbbedbb0e100ee0e7a2efe43d08a71..64a61c1b0c0a03f645b9720f1e506a740b62a73f 100644 (file)
@@ -859,7 +859,6 @@ ConfigReader::ConfigReader()
        this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
        this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
        this->readerror = Config->LoadConf(CONFIG_FILE,this->cache,this->errorlog);
-       tags.clear();
        if (!this->readerror)
                this->error = CONF_FILE_NOT_FOUND;
 }
@@ -880,7 +879,6 @@ ConfigReader::ConfigReader(std::string filename)
        this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
        this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
        this->readerror = Config->LoadConf(filename.c_str(),this->cache,this->errorlog);
-       tags.clear();
        if (!this->readerror)
                this->error = CONF_FILE_NOT_FOUND;
 };