1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 11:33:13 +02:00

BUILD : 1.7.21 (1409) BUGS : 922 NOTES : Changes check argument in calls to chan_set_modes() from cs_modes.c/do_util() to 2 to avoid calling chan_set_proper_modes()

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1124 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
mark mark@31f1291d-b8d6-0310-a050-a5561fc1590b
2008-08-14 23:34:43 +00:00
parent acfe67f2fd
commit efc03b7be4
3 changed files with 9 additions and 4 deletions
+2 -1
View File
@@ -44,7 +44,8 @@ Anope Version S V N
04/30 F Operators can now also use NickServ INFO ALL. [ #00]
05/12 F anope_cmd_notice_ops for unreal now includes source. [ #00]
05/12 F moduleNoticeLang() now calls notice_user instead of notice(). [ #00]
11/08 F Updated os_raw.c to show up as a 3rd party module. [ #00]
08/11 F Updated os_raw.c to show up as a 3rd party module. [ #00]
08/15 F CS OP now correctly works if there is only 1 user in the channel. [#922]
Provided by Robin Burchell <w00t@inspircd.org> - 2008
08/08 F Strict warnings in send.c from comparing address of non-ptr [ #00]
+2 -2
View File
@@ -342,7 +342,7 @@ int do_util(User * u, CSModeUtil * util)
&& check_access(u, ci, util->levelself)) {
anope_cmd_mode(whosends(ci), uc->chan->name, "%s %s",
util->mode, u->nick);
chan_set_modes(s_ChanServ, uc->chan, 2, av, 1);
chan_set_modes(s_ChanServ, uc->chan, 2, av, 2);
if (util->notice && ci->flags & util->notice)
notice(whosends(ci), uc->chan->name,
@@ -382,7 +382,7 @@ int do_util(User * u, CSModeUtil * util)
av[0] = util->mode;
av[1] = u2->nick;
chan_set_modes(s_ChanServ, c, 2, av, 1);
chan_set_modes(s_ChanServ, c, 2, av, 2);
if (util->notice && ci->flags & util->notice)
notice(whosends(ci), c->name, "%s command used for %s by %s",
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="21"
VERSION_EXTRA="-svn"
VERSION_BUILD="1404"
VERSION_BUILD="1409"
# $Log$
#
# BUILD : 1.7.21 (1409)
# BUGS : 922
# NOTES : Changes 'check' argument in calls to chan_set_modes() from cs_modes.c/do_util() to 2 to avoid calling chan_set_proper_modes()
#
# BUILD : 1.7.21 (1404)
# BUGS : 917
# NOTES : make install now runs install routine for modules subdirs also. Thanks Viper