Skip to content

Commit

Permalink
Correct this error message to confuse people less.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10784 e03df62e-2008-0410-955e-edbf42e46eb7
  • Loading branch information
rburchell committed Nov 1, 2008
1 parent 78f2649 commit 3c93d5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/cmd_stats.cpp
Expand Up @@ -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;
}

Expand Down

0 comments on commit 3c93d5d

Please sign in to comment.