diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-07-24 14:54:29 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-10-12 03:57:39 +0200 |
commit | c8b41aa5d256d99eee67ec94492a94dc30e0ea35 (patch) | |
tree | 251cb805f1fe25423ca245b4a9b6d5db67451fe8 /src/commands/cmd_die.cpp | |
parent | 5961493368ec3c83b688afe6229d4efb1bb4d57a (diff) |
Remove superfluous std::string()s
Diffstat (limited to 'src/commands/cmd_die.cpp')
-rw-r--r-- | src/commands/cmd_die.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_die.cpp b/src/commands/cmd_die.cpp index a3cee5fad..9b0126e3e 100644 --- a/src/commands/cmd_die.cpp +++ b/src/commands/cmd_die.cpp @@ -49,7 +49,7 @@ CmdResult CommandDie::Handle (const std::vector<std::string>& parameters, User * if (!ServerInstance->PassCompare(user, ServerInstance->Config->diepass, parameters[0].c_str(), ServerInstance->Config->powerhash)) { { - std::string diebuf = std::string("*** DIE command from ") + user->nick + "!" + user->ident + "@" + user->dhost + ". Terminating."; + std::string diebuf = "*** DIE command from " + user->nick + "!" + user->ident + "@" + user->dhost + ". Terminating."; ServerInstance->Logs->Log("COMMAND",SPARSE, diebuf); ServerInstance->SendError(diebuf); } |