1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 08:36:38 +02:00

BUILD : 1.7.19 (1250) BUGS : 718 NOTES : Fixed the fact that we did not send a receive-notification for the SQUIT for a juped server

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@969 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2007-06-15 14:30:04 +00:00
parent aa8ba0dc72
commit e16865f8bb
3 changed files with 15 additions and 1 deletions
+1
View File
@@ -2,6 +2,7 @@ Anope Version S V N
--------------------
06/15 F Non-existing servers being SQUIT'd when they were juped. [#726]
06/15 F Back online notice being sent to juped servers. [#726]
06/15 F Not informing opers a SQUIT for a juped server was received. [#718]
Anope Version 1.7.19
--------------------
+9
View File
@@ -402,6 +402,15 @@ void do_squit(const char *source, int ac, char **av)
}
send_event(EVENT_SERVER_SQUIT, 1, s->name);
/* If this is a juped server, send a nice global to inform the online
* opers that we received it.
*/
if (s->flags & SERVER_JUPED) {
snprintf(buf, BUFSIZE, "Received SQUIT for juped server %s",
s->name);
anope_cmd_global(s_OperServ, buf);
}
snprintf(buf, sizeof(buf), "%s %s", s->name,
(s->uplink ? s->uplink->name : ""));
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="19"
VERSION_EXTRA="-svn"
VERSION_BUILD="1249"
VERSION_BUILD="1250"
# $Log$
#
# BUILD : 1.7.19 (1250)
# BUGS : 718
# NOTES : Fixed the fact that we did not send a receive-notification for the SQUIT for a juped server
#
# BUILD : 1.7.19 (1249)
# BUGS : 726
# NOTES : Fixed some jupe stuff: when juping a currently non-existing server, it was still squitted and the globaloncycleup message was sent to newly juped servers