diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-14 18:01:08 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-14 18:01:08 +0000 |
commit | dcfcd9302fe67bfe1aeb67db4203867d173d3073 (patch) | |
tree | 8220b8762f7eeedad32da4325be023a1fafd9c54 /src/plexus.c | |
parent | 8c95c8f4904d3c1fd5e173f1d52356c921faf83d (diff) |
BUILD : 1.7.8 (619) BUGS : NOTES : Fixed the recording of server sync state more reliable, which fixes a bug where servers which did not report bursts would always remain in burst-mode internally
git-svn-id: svn://svn.anope.org/anope/trunk@619 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@467 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/plexus.c')
-rw-r--r-- | src/plexus.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plexus.c b/src/plexus.c index 83684f0ac..e15348815 100644 --- a/src/plexus.c +++ b/src/plexus.c @@ -110,6 +110,7 @@ IRCDVar ircd[] = { 0, /* support helper umode */ 0, /* p10 */ NULL, /* character set */ + 1, /* reports sync state */ } , {NULL} @@ -1013,9 +1014,9 @@ int anope_event_eob(char *source, int ac, char **av) * server finished bursting. -GD */ if (s) - s->sync = 1; - else - me_server->sync = 1; + s->sync = SSYNC_DONE; + else if (serv_uplink) + serv_uplink->sync = SSYNC_DONE; return MOD_CONT; } |