From 12a1feea09c106a00305b618394cbb133ffd24a8 Mon Sep 17 00:00:00 2001 From: "geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b" Date: Sat, 4 Jun 2005 10:13:36 +0000 Subject: [PATCH] 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 git-svn-id: svn://svn.anope.org/anope/trunk@825 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@578 5417fbe8-f217-4b02-8779-1006273d7864 --- Changes | 1 + src/protocol/ultimate3.c | 7 +++---- version.log | 6 +++++- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Changes b/Changes index db2975d1d..91ad4e299 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,7 @@ Anope Version S V N -------------------- Provided by Anope Dev. - 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