aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2012-03-06 19:16:50 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2012-03-06 19:16:50 +0100
commit8be49c3a800a2c43d71d29fc1b0b61567ed4541d (patch)
tree2973988bace02057f1fbd5b5a1266afdd85ca76d /networking
parentbb8d7db597e73f8bd7cb10e3d319be4c93128ccc (diff)
downloadbusybox-8be49c3a800a2c43d71d29fc1b0b61567ed4541d.tar.gz
ntpd: tweak log messages format
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r--networking/ntpd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/networking/ntpd.c b/networking/ntpd.c
index e9805087c..9c16b2b6b 100644
--- a/networking/ntpd.c
+++ b/networking/ntpd.c
@@ -1476,8 +1476,8 @@ update_local_clock(peer_t *p)
memset(&tmx, 0, sizeof(tmx));
if (adjtimex(&tmx) < 0)
bb_perror_msg_and_die("adjtimex");
- bb_error_msg("p adjtimex freq:%ld offset:%+ld constant:%ld status:0x%x",
- tmx.freq, tmx.offset, tmx.constant, tmx.status);
+ bb_error_msg("p adjtimex freq:%ld offset:%+ld status:0x%x tc:%ld",
+ tmx.freq, tmx.offset, tmx.status, tmx.constant);
}
memset(&tmx, 0, sizeof(tmx));
@@ -1667,7 +1667,7 @@ recv_and_process_peer_pkt(peer_t *p)
p->reachable_bits |= 1;
if ((MAX_VERBOSE && G.verbose) || (option_mask32 & OPT_w)) {
- bb_error_msg("reply from %s: reach 0x%02x offset %+f delay %f status 0x%02x strat %d refid 0x%08x rootdelay %f",
+ bb_error_msg("reply from:%s reach:0x%02x offset:%+f delay:%f status:0x%02x strat:%d refid:0x%08x rootdelay:%f",
p->p_dotted,
p->reachable_bits,
datapoint->d_offset,
@@ -2100,7 +2100,7 @@ int ntpd_main(int argc UNUSED_PARAM, char **argv)
if (--timeout <= 0)
goto did_poll;
}
- bb_error_msg("poll %us, sockets:%u, poll interval:%us", timeout, i, 1 << G.poll_exp);
+ bb_error_msg("poll:%us sockets:%u interval:%us", timeout, i, 1 << G.poll_exp);
}
nfds = poll(pfd, i, timeout * 1000);
did_poll: