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 /src | |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/protocol/ultimate3.c | 7 |
1 files changed, 3 insertions, 4 deletions
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; } |