Blame SOURCES/ntp-4.2.6p5-delaycalib.patch

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