diff options
Diffstat (limited to 'src/commands/cmd_rehash.cpp')
-rw-r--r-- | src/commands/cmd_rehash.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/commands/cmd_rehash.cpp b/src/commands/cmd_rehash.cpp index cf093552c..0f60f4a6d 100644 --- a/src/commands/cmd_rehash.cpp +++ b/src/commands/cmd_rehash.cpp @@ -51,14 +51,12 @@ CmdResult CommandRehash::Handle (const char* const* parameters, int pcnt, User * std::string m = std::string(user->nick) + " is rehashing config file " + ServerConfig::CleanFilename(ServerInstance->ConfigFileName) + " on " + ServerInstance->Config->ServerName; ServerInstance->SNO->WriteToSnoMask('A', m); - ServerInstance->PI->SendSNONotice("A", m); ServerInstance->Logs->CloseLogs(); if (!ServerInstance->OpenLog(ServerInstance->Config->argv, ServerInstance->Config->argc)) { m = std::string("ERROR: Could not open logfile ") + ServerInstance->Config->logpath + ":" + strerror(errno); ServerInstance->SNO->WriteToSnoMask('A', m); - ServerInstance->PI->SendSNONotice("A", m); } ServerInstance->RehashUsersAndChans(); |