aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-03-03 22:01:23 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2016-03-03 22:02:30 +0100
commit4c48a6474701d8b396a14213ebcc979a49187faf (patch)
treeffaae792591dacc380ab10ebdd9c4ebf015b78a7 /networking
parent35e063e1b9a1d35d311859fe61a934304952d5b5 (diff)
downloadbusybox-4c48a6474701d8b396a14213ebcc979a49187faf.tar.gz
ntpd: more informative poll lowering message
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r--networking/ntpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ntpd.c b/networking/ntpd.c
index 2a96ddbd0..4695c3366 100644
--- a/networking/ntpd.c
+++ b/networking/ntpd.c
@@ -1953,8 +1953,8 @@ recv_and_process_peer_pkt(peer_t *p)
adjust_poll(MINPOLL);
} else {
VERB3 if (rc > 0)
- bb_error_msg("want smaller poll interval: offset/jitter > %u",
- POLLADJ_GATE);
+ bb_error_msg("want smaller interval: offset/jitter = %u",
+ G.offset_to_jitter_ratio);
adjust_poll(-G.poll_exp * 2);
}
}