summaryrefslogtreecommitdiff
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2009-08-01 21:58:17 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2009-08-01 21:58:17 +0000
commitc71db5cbdece1b5ce878c68f162acb52eff8becd (patch)
tree8dbeaa9a9f0ab667a9fb90bf6a7679570aade860 /src/configreader.cpp
parentee465c20b6841bce724fa5e1402b1c9ee60b788e (diff)
Various rehash fixes that it seems were introduced by untested code.
- Remove unused ReportConfigError member - Don't report successful load (and spam modules that failed to load) if there is a config error - Restore server name before attempting to send error string to client(s) otherwise most of them won't recieve the notifications. Fixes bug #891. Still to come: report errors loudly on startup regardless of debug mode. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11450 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp28
1 files changed, 17 insertions, 11 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index cbd9049a0..1fb434493 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -707,12 +707,6 @@ bool DoneMaxBans(ServerConfig*, const char*)
return true;
}
-void ServerConfig::ReportConfigError(const std::string &errormessage)
-{
- ServerInstance->Logs->Log("CONFIG",DEFAULT, "There were errors in your configuration file: %s", errormessage.c_str());
- errstr << errormessage << std::endl;
-}
-
void ServerConfig::Read()
{
static char maxkeep[MAXBUF]; /* Temporary buffer for WhoWasMaxKeep value */
@@ -1171,12 +1165,22 @@ void ServerConfig::Read()
void ServerConfig::Apply(ServerConfig* old, const std::string &useruid)
{
int rem = 0, add = 0;
+ bool errors = false;
// write once here, to try it out and make sure its ok
ServerInstance->WritePID(this->PID);
FailedPortList pl;
ServerInstance->BindPorts(pl);
+ /*
+ * These values can only be set on boot. Keep their old values. Do it before we send messages so we actually have a servername.
+ */
+ if (old)
+ {
+ memcpy(this->ServerName, old->ServerName, sizeof(this->ServerName));
+ memcpy(this->sid, old->sid, sizeof(this->sid));
+ }
+
if (pl.size())
{
errstr << "Not all your client ports could be bound.\nThe following port(s) failed to bind:\n";
@@ -1194,6 +1198,9 @@ void ServerConfig::Apply(ServerConfig* old, const std::string &useruid)
while (errstr.good())
{
+ if (errors == false)
+ ServerInstance->Logs->Log("CONFIG",DEFAULT, "There were errors in your configuration file:");
+ errors = true; // XXX: has to be a nicer way to accomplish this.
std::string line;
getline(errstr, line, '\n');
if (!line.empty())
@@ -1212,11 +1219,10 @@ void ServerConfig::Apply(ServerConfig* old, const std::string &useruid)
if (!old)
return;
- /*
- * These values can only be set on boot. Keep their old values.
- */
- memcpy(this->ServerName, old->ServerName, sizeof(this->ServerName));
- memcpy(this->sid, old->sid, sizeof(this->sid));
+ // If there were errors processing configuration, don't touch modules.
+ if (errors)
+ return;
+
if (!removed_modules.empty())
{