diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-11 18:57:22 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-11 18:57:22 +0000 |
commit | a004ad524ff0cbed063ff2dd902cadd38e48f30e (patch) | |
tree | 801029a22c6c5415eb1856ca41ddd875683a1338 /src/configreader.cpp | |
parent | 1a0357cc2caa18cb2b1ee115053c8f239aa5576b (diff) |
Report failure to load configs
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8571 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r-- | src/configreader.cpp | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index e9301d70a..13ef5ddad 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -1268,7 +1268,7 @@ void ServerConfig::StartDownloads() ServerInstance->Log(DEBUG,"Begin download for %s", file.c_str()); if ((file[0] == '/') || (file.substr(0, 7) == "file://")) { - ServerInstance->Log(DEBUG,"Core-handled schema for %s %s", file.c_str(), file.substr(0,7).c_str()); + ServerInstance->Log(DEBUG,"Core-handled schema for %s", file.c_str()); /* For file:// schema files, we use std::ifstream which is a derivative of std::istream. * For all other file schemas, we use a std::stringstream. */ @@ -1282,7 +1282,11 @@ void ServerConfig::StartDownloads() x->second = conf; } else + { + delete x->second; + x->second = NULL; FileErrors++; + } TotalDownloaded++; } @@ -1290,6 +1294,12 @@ void ServerConfig::StartDownloads() { /* Modules handle these */ ServerInstance->Log(DEBUG,"Module-handled schema for %s", x->first.c_str()); + + /* For now, error it */ + FileErrors++; + TotalDownloaded++; + delete x->second; + x->second = NULL; } } } @@ -1321,8 +1331,8 @@ bool ServerConfig::LoadConf(ConfigDataHash &target, const char* filename, std::o } else { - /* Check if the file open failed first */ - if (IncludedFiles.find(filename) == IncludedFiles.end()) + std::map<std::string, std::istream*>::iterator x = IncludedFiles.find(filename); + if (x == IncludedFiles.end()) { if (pass == 0) { @@ -1340,7 +1350,15 @@ bool ServerConfig::LoadConf(ConfigDataHash &target, const char* filename, std::o } } else - conf = IncludedFiles.find(filename)->second; + { + if (x->second) + conf = IncludedFiles.find(filename)->second; + else + { + errorstream << "File " << filename << " could not be opened." << std::endl; + return false; + } + } } /* Start reading characters... */ |