diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-06-04 10:13:36 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-06-04 10:13:36 +0000 |
commit | 12a1feea09c106a00305b618394cbb133ffd24a8 (patch) | |
tree | 5ef8bd61a1752fb27c2b03b74eda346b2c5d4ca1 | |
parent | ca25d6e252a652714957eff7bfd672fedad652e4 (diff) |
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
-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 |