]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Update core_stats.cpp
authorWindowsUser <WindowsUser@users.noreply.github.com>
Sun, 11 May 2014 09:45:18 +0000 (02:45 -0700)
committerAttila Molnar <attilamolnar@hush.com>
Mon, 12 May 2014 16:40:12 +0000 (18:40 +0200)
Make this consistent with other "Permission Denied" errors.

src/coremods/core_stats.cpp

index a593ac94d638e4623f4b9b8e9a3c48133dc9b36e..e0e5b3a0feaedf9403f4eb7aabd977b48478fc09 100644 (file)
@@ -62,7 +62,7 @@ void CommandStats::DoStats(char statschar, User* user, string_list &results)
                                "%s '%c' denied for %s (%s@%s)",
                                (IS_LOCAL(user) ? "Stats" : "Remote stats"),
                                statschar, user->nick.c_str(), user->ident.c_str(), user->host.c_str());
-               results.push_back("481 " + user->nick + " :Permission denied - STATS " + statschar + " requires the servers/auspex priv.");
+               results.push_back("481 " + user->nick + " :Permission Denied - STATS " + statschar + " requires the servers/auspex priv.");
                return;
        }