From 52eaa7d6d61e3373340fd5a69b92b0fb3b5609e0 Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 25 Jan 2012 15:48:07 -0500 Subject: Windows --- modules/commands/help.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/commands/help.cpp') 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 c(info.name); + service_reference 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 c(info.name); + service_reference c("Command", info.name); if (!c) continue; -- cgit