diff options
author | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-22 01:40:33 +0000 |
---|---|---|
committer | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-22 01:40:33 +0000 |
commit | 6f8139e131cdd7ca5591279313b5e4bf0b508808 (patch) | |
tree | 396155196856fe83ca55b8cc614e39e7c6ba44fe | |
parent | 2f0125c6fbe48affb36b60673de820c060cc4dbc (diff) |
BUILD : 1.7.4 (209) BUGS : none NOTES : Fixed implementation for dynamic server /OS GLOBAL
git-svn-id: svn://svn.anope.org/anope/trunk@209 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@151 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | operserv.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/operserv.c b/operserv.c index 2349e3ee1..e070b55b0 100644 --- a/operserv.c +++ b/operserv.c @@ -1021,6 +1021,7 @@ Server *server_global(Server * s, char *msg) Server *sl; while (s) { + notice_server(s_GlobalNoticer, s, "%s", msg); if (s->links) { sl = server_global(s->links, msg); if (sl) @@ -1028,7 +1029,6 @@ Server *server_global(Server * s, char *msg) else s = s->next; } else { - notice_server(s_GlobalNoticer, s, "%s", msg); s = s->next; } } diff --git a/version.log b/version.log index 24c429b6b..d199db171 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="4" -VERSION_BUILD="208" +VERSION_BUILD="209" # $Log$ # +# BUILD : 1.7.4 (209) +# BUGS : none +# NOTES : Fixed implementation for dynamic server /OS GLOBAL +# # BUILD : 1.7.4 (208) # BUGS : none # NOTES : New implementation for dynamic server /OS GLOBAL |