diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/protocol/ultimate3.c | 7 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 9 insertions, 5 deletions
@@ -2,6 +2,7 @@ Anope Version S V N -------------------- Provided by Anope Dev. <dev@anope.org> - 2005 06/03 A Protocol files can now fill mod_current_buffer with custom code. [#389] +06/04 F Finishing sync for Ultimate3 was not done correctly. [#398] 06/03 F Moved checks for UseTokens, UseTS6, and Numeric. [#385] 06/03 F Load protocol module before launching listnicks/listchans. [#391] 05/29 F operserv opernews dispalys the correct help now. [#386] diff --git a/src/protocol/ultimate3.c b/src/protocol/ultimate3.c index 9136db5c2..d45e2e1ae 100644 --- a/src/protocol/ultimate3.c +++ b/src/protocol/ultimate3.c @@ -1600,10 +1600,9 @@ int anope_event_burst(char *source, int ac, char **av) * finished bursting. If there was no source, then our uplink * server finished bursting. -GD */ - if (s) - s->sync = SSYNC_DONE; - else - me_server->sync = SSYNC_DONE; + if (!s && serv_uplink) + s = serv_uplink; + finish_sync(s, 1); } return MOD_CONT; } diff --git a/version.log b/version.log index 15934b057..69690656f 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="10" -VERSION_BUILD="824" +VERSION_BUILD="825" # $Log$ # +# BUILD : 1.7.10 (825) +# BUGS : 398 +# NOTES : Forgot to enable finish_sync() for ultimate3, it was still using the old way to do it +# # BUILD : 1.7.10 (824) # BUGS : 389 # NOTES : Added the possibility for protocol files to override the code setting mod_current_buffer, which is needed for InspIRCd |