diff options
-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 |