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

BUILD : 1.7.17 (1213) BUGS : 651 653 NOTES : Fixed channel joins being logged twice in debug mode on some IRCds and BotServ incorrectly attempting to remove bans with BSSmartJoin

git-svn-id: svn://svn.anope.org/anope/trunk@1213 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@932 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-12-30 17:21:37 +00:00
parent fa67b03616
commit 327d27183f
4 changed files with 9 additions and 4 deletions
+2
View File
@@ -20,6 +20,8 @@ Anope Version S V N
12/24 F Display error messages when RDB functions fail. [ #00]
12/27 F ModuleNoticeLang was printf'ing twice. [#650]
12/27 F Module (un)loading was only giving error numbers, not messages. [#652]
12/29 F Channel joins logged twice on some IRCd's with debug mode on. [#651]
12/29 F Botserv incorrectly attempted to remove bans with BSSmartJoin [#653]
Anope Version 1.7.17
--------------------
+2 -1
View File
@@ -776,7 +776,8 @@ void bot_join(ChannelInfo * ci)
av[1] = sstrdup("-b");
for (i = 0; i < count; i++) {
if (match_wild_nocase(ci->c->bans[i], botmask)) {
anope_cmd_mode(ci->bi->nick, ci->name, "%s", bans[i]);
anope_cmd_mode(ci->bi->nick, ci->name, "-b %s",
bans[i]);
av[2] = sstrdup(bans[i]);
do_cmode(ci->bi->nick, 3, av);
free(av[2]);
-2
View File
@@ -525,8 +525,6 @@ void do_join(const char *source, int ac, char **av)
t = s + strcspn(s, ",");
if (*t)
*t++ = 0;
if (debug)
alog("debug: %s joins %s", source, s);
if (*s == '0') {
c = user->chans;
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="17"
VERSION_EXTRA="-svn"
VERSION_BUILD="1212"
VERSION_BUILD="1213"
# $Log$
#
# BUILD : 1.7.17 (1213)
# BUGS : 651 653
# NOTES : Fixed channel joins being logged twice in debug mode on some IRCds and BotServ incorrectly attempting to remove bans with BSSmartJoin
#
# BUILD : 1.7.17 (1212)
# BUGS : 652
# NOTES : Fixed handleModuleOperationQueue to also include error messages instead of only error numbers