diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-03-03 22:01:23 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-03-03 22:02:30 +0100 |
commit | 4c48a6474701d8b396a14213ebcc979a49187faf (patch) | |
tree | ffaae792591dacc380ab10ebdd9c4ebf015b78a7 | |
parent | 35e063e1b9a1d35d311859fe61a934304952d5b5 (diff) | |
download | busybox-w32-4c48a6474701d8b396a14213ebcc979a49187faf.tar.gz busybox-w32-4c48a6474701d8b396a14213ebcc979a49187faf.tar.bz2 busybox-w32-4c48a6474701d8b396a14213ebcc979a49187faf.zip |
ntpd: more informative poll lowering message
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/ntpd.c | 4 |
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) | |||
1953 | adjust_poll(MINPOLL); | 1953 | adjust_poll(MINPOLL); |
1954 | } else { | 1954 | } else { |
1955 | VERB3 if (rc > 0) | 1955 | VERB3 if (rc > 0) |
1956 | bb_error_msg("want smaller poll interval: offset/jitter > %u", | 1956 | bb_error_msg("want smaller interval: offset/jitter = %u", |
1957 | POLLADJ_GATE); | 1957 | G.offset_to_jitter_ratio); |
1958 | adjust_poll(-G.poll_exp * 2); | 1958 | adjust_poll(-G.poll_exp * 2); |
1959 | } | 1959 | } |
1960 | } | 1960 | } |