diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-01-31 14:35:13 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-01-31 14:35:13 +0100 |
commit | 3fc88ba7c97a5db3bfbb0c422afd4e180271b348 (patch) | |
tree | 68cea48581acd1e2cba232cedeb7242b05d05af7 /src/commands/cmd_die.cpp | |
parent | 98ef89c392a63bb7a78df5e8d8283c848f9dd2af (diff) |
Remove a few unnecessary .c_str() calls
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 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."; |