diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-11-19 17:56:11 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-11-19 17:56:11 +0000 |
commit | a4c34ef876480a6a50079575cedca6899e5c2840 (patch) | |
tree | 0ec6005d52fb7b067b06275cc08e96c15b3b7a01 | |
parent | 1303b4971acd90cd009265b7c0be05254e1f359d (diff) |
BUILD : 1.7.6 (451) BUGS : 221 NOTES : Fixes for wrong string for bot nick registration check, and added the check to bot change
git-svn-id: svn://svn.anope.org/anope/trunk@451 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@305 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/botserv.c | 14 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 16 insertions, 5 deletions
@@ -3,6 +3,7 @@ Anope Version S V N Provided by Anope Dev. <dev@anope.org> - 2004 11/18 A Unable to use registered nicknames as bot nicks from now on. [ #00] 11/18 A NSAddAccessOnReg to control access list on registration. [ #00] +11/19 F Wrong string and missing registered nick check in bot change. [#221] Provided by Trystan <trystan@nomadirc.net> - 2004 11/16 F NickTracking could allow usage of forbidden nick in some cases. [ #00] diff --git a/src/botserv.c b/src/botserv.c index 0faa9749a..e0cd346ba 100644 --- a/src/botserv.c +++ b/src/botserv.c @@ -1262,7 +1262,7 @@ static int do_bot(User * u) * it as a bot nick from now on -GD */ if ((na = findnick(nick))) { - notice_lang(s_BotServ, u, NICK_X_IN_USE, nick); + notice_lang(s_BotServ, u, NICK_ALREADY_REGISTERED, nick); return MOD_CONT; } @@ -1368,9 +1368,15 @@ static int do_bot(User * u) anope_cmd_unsqline(bi->nick); } - /* We check whether the nick is registered, and drop it if so */ - if ((na = findnick(nick))) - delnick(na); + /* We check whether the nick is registered, and inform the user + * if so. You need to drop the nick manually before you can use + * it as a bot nick from now on -GD + */ + if ((na = findnick(nick))) { + notice_lang(s_BotServ, u, NICK_ALREADY_REGISTERED, + nick); + return MOD_CONT; + } /* We check whether user with this nick is online, and kill it if so */ EnforceQlinedNick(nick, s_BotServ); diff --git a/version.log b/version.log index 7d87c235c..5af81071b 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="6" -VERSION_BUILD="450" +VERSION_BUILD="451" # $Log$ # +# BUILD : 1.7.6 (451) +# BUGS : 221 +# NOTES : Fixes for wrong string for bot nick registration check, and added the check to bot change +# # BUILD : 1.7.6 (450) # BUGS : # NOTES : Updated en_us.l for new BotServ BOT ADD behaviour |