summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-11-11 18:40:01 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-11-11 18:40:01 +0000
commit0e6f0d340ba68c8969608c70f57947577f028201 (patch)
treeda100c7b58bf4ce742f4ee433a9b70a14b4113fc
parentd1323ef03f90dc0a4b82137f2573b60a85cc965c (diff)
Whoops, make it pick up module-handled schemas correctly
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8569 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/configreader.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index 72f1d3203..2138d0638 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -1254,21 +1254,21 @@ void ServerConfig::StartDownloads()
/* Reads all local files into the IncludedFiles map, then initiates sockets for the remote ones */
for (std::map<std::string, std::istream*>::iterator x = IncludedFiles.begin(); x != IncludedFiles.end(); ++x)
{
- ServerInstance->Log(DEBUG,"Begin download for %s", x->first.c_str());
- if ((x->first[0] == '/') || (x->first.substr(7) == "file://"))
+ std::string file = x->first;
+ 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());
/* 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.
*/
- /* First, delete the dummy std::stringstream file that LoadConf put here */
- delete x->second;
-
- /* Now add our own ifstream */
- std::ifstream* conf = new std::ifstream(x->first.c_str());
+ /* Add our own ifstream */
+ std::ifstream* conf = new std::ifstream(file.c_str());
if (!conf->fail())
{
- ServerInstance->Log(DEBUG,"file:// schema file %s loaded OK", x->first.c_str());
+ ServerInstance->Log(DEBUG,"file:// schema file %s loaded OK", file.c_str());
+ delete x->second;
x->second = conf;
}
@@ -1638,7 +1638,7 @@ bool ServerConfig::DoInclude(ConfigDataHash &target, const std::string &file, st
std::replace(newfile.begin(),newfile.end(),'\\','/');
std::replace(confpath.begin(),confpath.end(),'\\','/');
- if (newfile[0] != '/')
+ if ((newfile[0] != '/') && (newfile.find("://") == std::string::npos))
{
if((pos = confpath.rfind("/")) != std::string::npos)
{