summaryrefslogtreecommitdiff
path: root/modules/commands/os_set.cpp
diff options
context:
space:
mode:
authorlethality <lethality@anope.org>2011-08-08 06:19:35 +0100
committerlethality <lethality@anope.org>2011-08-08 06:19:35 +0100
commit286a9edb1ecc05d0afc515e05dce868efe38f063 (patch)
treec224702fc1f6e57bc3e24ac478afd236760aa1b2 /modules/commands/os_set.cpp
parentade92395a0f08b125b60fbbd488eecb5c3258e76 (diff)
Standardized some of the SyntaxError/Help replies and corrected some syntax in BotServ set
Diffstat (limited to 'modules/commands/os_set.cpp')
-rw-r--r--modules/commands/os_set.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/os_set.cpp b/modules/commands/os_set.cpp
index abee78e77..340b463ea 100644
--- a/modules/commands/os_set.cpp
+++ b/modules/commands/os_set.cpp
@@ -189,7 +189,7 @@ class CommandOSSet : public Command
else if (option.equals_ci("NOEXPIRE"))
return this->DoSetNoExpire(source, params);
else
- source.Reply(_("Unknown option \002%s\002."), option.c_str());
+ this->OnSyntaxError(source, "");
return;
}