diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-04 17:29:53 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-04 17:29:53 +0000 |
commit | a2984dc68930300bdc79fecb1891dea20a1233ec (patch) | |
tree | 59ebc6b1cad19315af25f3a198a4b0d3f3273331 | |
parent | d1fad914b1d42bb82a64fad01066990a4dbe2e85 (diff) |
Old stuff left behind
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3447 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index e5a0145c0..64a61c1b0 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -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; }; |