diff options
Diffstat (limited to 'modules/nickserv/cert.cpp')
-rw-r--r-- | modules/nickserv/cert.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/nickserv/cert.cpp b/modules/nickserv/cert.cpp index bcc1c863f..cb089e26e 100644 --- a/modules/nickserv/cert.cpp +++ b/modules/nickserv/cert.cpp @@ -205,7 +205,7 @@ class CommandNSCert : public Command if (certfp.empty()) { - this->OnSyntaxError(source, "DEL"); + this->OnSyntaxError(source); return; } @@ -293,7 +293,7 @@ class CommandNSCert : public Command else if (cmd.equals_ci("DEL")) return this->DoDel(source, nc, certfp); else - this->OnSyntaxError(source, ""); + this->OnSyntaxError(source); } bool OnHelp(CommandSource &source, const Anope::string &subcommand) override |