diff options
author | Adam <Adam@anope.org> | 2012-01-25 15:48:07 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-01-25 15:48:07 -0500 |
commit | 52eaa7d6d61e3373340fd5a69b92b0fb3b5609e0 (patch) | |
tree | 428f2b440ab5675ae3a9c19ae5b813f132497c79 /modules/commands/help.cpp | |
parent | e88e37c59b45cc43b714d1d28719eb3c2ca9579a (diff) |
Windows
Diffstat (limited to 'modules/commands/help.cpp')
-rw-r--r-- | modules/commands/help.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/help.cpp b/modules/commands/help.cpp index dc0c3864d..a7356c0d0 100644 --- a/modules/commands/help.cpp +++ b/modules/commands/help.cpp @@ -45,7 +45,7 @@ class CommandHelp : public Command if (cmd != it->first && bi->commands.count(cmd)) continue; - service_reference<Command> c(info.name); + service_reference<Command> c("Command", info.name); if (!c) continue; if (!Config->HidePrivilegedCommands || info.permission.empty() || u->HasCommand(info.permission)) @@ -71,7 +71,7 @@ class CommandHelp : public Command CommandInfo &info = it->second; - service_reference<Command> c(info.name); + service_reference<Command> c("Command", info.name); if (!c) continue; |