From 3c93d5d1c46953ad152f619885c4f3678d4a3ecc Mon Sep 17 00:00:00 2001 From: w00t Date: Sat, 1 Nov 2008 23:15:23 +0000 Subject: [PATCH] Correct this error message to confuse people less. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10784 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/commands/cmd_stats.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/cmd_stats.cpp b/src/commands/cmd_stats.cpp index 906ad901f2..3219c53e74 100644 --- a/src/commands/cmd_stats.cpp +++ b/src/commands/cmd_stats.cpp @@ -57,7 +57,7 @@ DllExport void DoStats(InspIRCd* ServerInstance, char statschar, User* user, str "%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(sn + " 481 " + user->nick + " :Permission denied - STATS " + statschar + " is oper-only"); + results.push_back(sn + " 481 " + user->nick + " :Permission denied - STATS " + statschar + " requires the servers/auspex priv."); return; }