summaryrefslogtreecommitdiff
path: root/src/commands/cmd_die.cpp
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2014-01-18 04:53:52 +0000
committerAttila Molnar <attilamolnar@hush.com>2014-01-25 12:20:04 +0100
commit074727e7a74f8dcef6c250faf6a757f0274d27db (patch)
treead38267d13fd59936770ee2b20e018b57d56852e /src/commands/cmd_die.cpp
parent48869b38e938de4d8dd4cdff486b10348e81f7b6 (diff)
Convert InspIRCd::PassCompare to return bool instead of int.
The insane behaviour of this method was due to an implementation detail which has since become irrelevent.
Diffstat (limited to 'src/commands/cmd_die.cpp')
-rw-r--r--src/commands/cmd_die.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_die.cpp b/src/commands/cmd_die.cpp
index 3ccc037b4..105f40d46 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].c_str(), ServerInstance->Config->powerhash))
{
{
std::string diebuf = "*** DIE command from " + user->GetFullHost() + ". Terminating.";