summaryrefslogtreecommitdiff
path: root/modules/core/os_shutdown.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-08-04 21:59:01 -0400
committerAdam <Adam@anope.org>2011-08-04 21:59:01 -0400
commit9ec18a3b020932eee6242c878149c484f49b13cb (patch)
tree6f0470e27bf4f3ced0f6833db00134f4b29a79a9 /modules/core/os_shutdown.cpp
parent773a1f3075fa12700d41598c0b8a8dd7caf9011e (diff)
Added a command:permission setting
Diffstat (limited to 'modules/core/os_shutdown.cpp')
-rw-r--r--modules/core/os_shutdown.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/core/os_shutdown.cpp b/modules/core/os_shutdown.cpp
index 47cb2e4cf..bc3a19353 100644
--- a/modules/core/os_shutdown.cpp
+++ b/modules/core/os_shutdown.cpp
@@ -16,7 +16,7 @@
class CommandOSQuit : public Command
{
public:
- CommandOSQuit(Module *creator) : Command(creator, "operserv/quit", 0, 0, "operserv/quit")
+ CommandOSQuit(Module *creator) : Command(creator, "operserv/quit", 0, 0)
{
this->SetDesc(_("Terminate Services WITHOUT saving"));
this->SetSyntax("");
@@ -45,7 +45,7 @@ class CommandOSQuit : public Command
class CommandOSRestart : public Command
{
public:
- CommandOSRestart(Module *creator) : Command(creator, "operserv/restart", 0, 0, "operserv/restart")
+ CommandOSRestart(Module *creator) : Command(creator, "operserv/restart", 0, 0)
{
this->SetDesc(_("Save databases and restart Services"));
this->SetSyntax("");
@@ -72,7 +72,7 @@ class CommandOSRestart : public Command
class CommandOSShutdown : public Command
{
public:
- CommandOSShutdown(Module *creator) : Command(creator, "operserv/shutdown", 0, 0, "operserv/shutdown")
+ CommandOSShutdown(Module *creator) : Command(creator, "operserv/shutdown", 0, 0)
{
this->SetDesc(_("Terminate services with save"));
this->SetSyntax("");