bk: 4edfe87dtAW6uFJc_eMLjDxMIIVV1Q
* [Bug 2082] 3-char refid sent by ntpd 4.2.6p5-RC2 ends with extra dot.
* [Bug 2085] clock_update() sys_rootdisp calculation omits root delay.
* [Bug 2086] get_systime() should not offset by sys_residual.
+* [Bug 2087] sys_jitter calculation overweights sys.peer jitter.
* Ensure NULL peer->dstadr is not accessed in orphan parent selection.
---
if (sys_prefer == NULL) {
typesystem->new_status = CTL_PST_SEL_SYSPEER;
clock_combine(peer_list, sys_survivors);
- sys_jitter = SQRT(SQUARE(typesystem->jitter) +
- SQUARE(sys_jitter) + SQUARE(seljitter));
+ sys_jitter = SQRT(SQUARE(sys_jitter) +
+ SQUARE(seljitter));
} else {
typesystem = sys_prefer;
sys_clockhop = 0;