summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpimpmylinux <pimpmylinux@5417fbe8-f217-4b02-8779-1006273d7864>2010-01-11 18:51:50 +0000
committerpimpmylinux <pimpmylinux@5417fbe8-f217-4b02-8779-1006273d7864>2010-01-11 18:51:50 +0000
commit7776fb854829d4dca4727399ef0bf8e733deafd0 (patch)
tree06e5288866a786ea08766c44e33eea79c4b00075 /src
parent7954542a86e75feae8759206fda5e9a79978234a (diff)
Some language fixes closing issue #1124 and #1122, fixed wrong language string invoked in bot add closing issue #1118
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2750 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r--src/core/bs_bot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/bs_bot.c b/src/core/bs_bot.c
index f7dccb3c2..c6a630c7e 100644
--- a/src/core/bs_bot.c
+++ b/src/core/bs_bot.c
@@ -244,7 +244,7 @@ int do_bot(User * u)
if (user) {
for (ch = user; *ch && (ch - user) < USERMAX; ch++) {
if (!isalnum(*ch)) {
- notice_lang(s_BotServ, u, BOT_LONG_IDENT, USERMAX - 1);
+ notice_lang(s_BotServ, u, BOT_BAD_IDENT, USERMAX - 1);
return MOD_CONT;
}
}