summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-16 16:18:24 +0000
committerrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-16 16:18:24 +0000
commit771eb5cf1f73c7807c861ad4c70da97d6610d326 (patch)
tree988e0b40c53b04009ebe0a3ec2370ee74f35ef7f
parente1f80a1833f93ff302c01bb31ec935ab9621ac59 (diff)
Fix wrong service listed in "to identify"
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2095 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--TODO4
-rw-r--r--src/commands.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/TODO b/TODO
index b8cd2a6a8..2b952400b 100644
--- a/TODO
+++ b/TODO
@@ -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.
diff --git a/src/commands.c b/src/commands.c
index 018ca6897..d4932fe4d 100644
--- a/src/commands.c
+++ b/src/commands.c
@@ -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;
}