Blame SOURCES/ntp-4.2.6p5-delaycalib.patch

473877
diff -up ntp-4.2.6p5/ntpd/ntp_proto.c.delaycalib ntp-4.2.6p5/ntpd/ntp_proto.c
473877
--- ntp-4.2.6p5/ntpd/ntp_proto.c.delaycalib	2012-02-28 15:57:57.000000000 +0100
473877
+++ ntp-4.2.6p5/ntpd/ntp_proto.c	2012-02-28 16:01:30.080135978 +0100
473877
@@ -1514,7 +1514,7 @@ process_packet(
473877
 		 */
473877
 		if (FLAG_BC_VOL & peer->flags) {
473877
 			peer->flags &= ~FLAG_BC_VOL;
473877
-			peer->delay = (peer->offset - p_offset) * 2;
473877
+			peer->delay = fabs(peer->offset - p_offset) * 2;
473877
 		}
473877
 		p_del = peer->delay;
473877
 		p_offset += p_del / 2;