summaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-01-31 14:35:13 +0100
committerAttila Molnar <attilamolnar@hush.com>2014-01-31 14:35:13 +0100
commit3fc88ba7c97a5db3bfbb0c422afd4e180271b348 (patch)
tree68cea48581acd1e2cba232cedeb7242b05d05af7 /src/commands
parent98ef89c392a63bb7a78df5e8d8283c848f9dd2af (diff)
Remove a few unnecessary .c_str() calls
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/cmd_die.cpp2
-rw-r--r--src/commands/cmd_restart.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/cmd_die.cpp b/src/commands/cmd_die.cpp
index 105f40d46..13fa6c47e 100644
--- a/src/commands/cmd_die.cpp
+++ b/src/commands/cmd_die.cpp
@@ -46,7 +46,7 @@ class CommandDie : public Command
*/
CmdResult CommandDie::Handle (const std::vector<std::string>& parameters, User *user)
{
- if (ServerInstance->PassCompare(user, ServerInstance->Config->diepass, parameters[0].c_str(), ServerInstance->Config->powerhash))
+ if (ServerInstance->PassCompare(user, ServerInstance->Config->diepass, parameters[0], ServerInstance->Config->powerhash))
{
{
std::string diebuf = "*** DIE command from " + user->GetFullHost() + ". Terminating.";
diff --git a/src/commands/cmd_restart.cpp b/src/commands/cmd_restart.cpp
index be711e069..92a243eab 100644
--- a/src/commands/cmd_restart.cpp
+++ b/src/commands/cmd_restart.cpp
@@ -40,7 +40,7 @@ class CommandRestart : public Command
CmdResult CommandRestart::Handle (const std::vector<std::string>& parameters, User *user)
{
ServerInstance->Logs->Log("COMMAND", LOG_DEFAULT, "Restart: %s",user->nick.c_str());
- if (ServerInstance->PassCompare(user, ServerInstance->Config->restartpass, parameters[0].c_str(), ServerInstance->Config->powerhash))
+ if (ServerInstance->PassCompare(user, ServerInstance->Config->restartpass, parameters[0], ServerInstance->Config->powerhash))
{
ServerInstance->SNO->WriteGlobalSno('a', "RESTART command from %s, restarting server.", user->GetFullRealHost().c_str());