diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-12-28 16:59:03 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-12-28 16:59:03 +0100 |
commit | 299f262a4fd1c0a508a5b6748761128a2c3efde9 (patch) | |
tree | 6ec11d59ecdd976ecf6636af22ebb49367da5fcf /src/configreader.cpp | |
parent | 03561f500eb8e82b2ddfa0489fb4ae03c2c9631b (diff) |
Fix some whitespace issues
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r-- | src/configreader.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 092911c74..2c31fa0ae 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -626,11 +626,11 @@ void ServerConfig::Apply(ServerConfig* old, const std::string &useruid) ConfigTag *tag = (*it)->config; // Make sure our connection class allows motd colors if(!tag->getBool("allowmotdcolors")) - continue; + continue; ConfigFileCache::iterator file = this->Files.find(tag->getString("motd", "motd")); if (file != this->Files.end()) - InspIRCd::ProcessColors(file->second); + InspIRCd::ProcessColors(file->second); } /* No old configuration -> initial boot, nothing more to do here */ @@ -697,7 +697,7 @@ void ServerConfig::ApplyModules(User* user) if (user) user->WriteNumeric(ERR_CANTUNLOADMODULE, "%s :Failed to unload module %s: %s", modname.c_str(), modname.c_str(), ServerInstance->Modules->LastError().c_str()); else - ServerInstance->SNO->WriteGlobalSno('a', "Failed to unload module %s: %s", modname.c_str(), ServerInstance->Modules->LastError().c_str()); + ServerInstance->SNO->WriteGlobalSno('a', "Failed to unload module %s: %s", modname.c_str(), ServerInstance->Modules->LastError().c_str()); } } |