diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/servers.c | 9 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 15 insertions, 1 deletions
@@ -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 -------------------- diff --git a/src/servers.c b/src/servers.c index cef8e01b5..a2502bf8a 100644 --- a/src/servers.c +++ b/src/servers.c @@ -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 : "")); diff --git a/version.log b/version.log index 2f788c848..437d26123 100644 --- a/version.log +++ b/version.log @@ -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 |