diff options
| author | 2014-01-31 14:35:13 +0100 | |
|---|---|---|
| committer | 2014-01-31 14:35:13 +0100 | |
| commit | 3fc88ba7c97a5db3bfbb0c422afd4e180271b348 (patch) | |
| tree | 68cea48581acd1e2cba232cedeb7242b05d05af7 /src/commands/cmd_die.cpp | |
| parent | Remove some dead code (diff) | |
| download | inspircd++-3fc88ba7c97a5db3bfbb0c422afd4e180271b348.tar.gz inspircd++-3fc88ba7c97a5db3bfbb0c422afd4e180271b348.tar.bz2 inspircd++-3fc88ba7c97a5db3bfbb0c422afd4e180271b348.zip | |
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."; |
