1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 01:43:13 +02:00

Fix wrong service listed in "to identify"

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2095 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
rburchell
2009-02-16 16:18:24 +00:00
parent e1f80a1833
commit 771eb5cf1f
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -21,6 +21,10 @@ Legend:
[ ] Add support for +k, +q, etc type umodes
[x] Support operoverride and such things (stop reversing mode changes from nonopped people where unnecessary) - done by Liber
Outstanding issues:
- autoid
- * help set
1.9.2
-----
[ ] Redo database insanity.
+1 -1
View File
@@ -77,7 +77,7 @@ void mod_run_cmd(char *service, User * u, CommandHash * cmdTable[], const char *
// Command requires registered users only
if (!nick_identified(u))
{
notice_lang(service, u, NICK_IDENTIFY_REQUIRED, service);
notice_lang(service, u, NICK_IDENTIFY_REQUIRED, s_NickServ);
alog("Access denied for unregistered user %s with service %s and command %s", u->nick, service, cmd);
return;
}