diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-03-30 16:20:28 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-03-30 16:20:28 +0200 |
commit | 066e76befe5d39fc3451846af94cbba96747186c (patch) | |
tree | f809b807a88c8a281c3cb02c7df2ab4c83b902cb /networking/traceroute.c | |
parent | 76b680c7a8d5a99e46ab8d9cad49aed0cfc440a7 (diff) | |
download | busybox-w32-066e76befe5d39fc3451846af94cbba96747186c.tar.gz busybox-w32-066e76befe5d39fc3451846af94cbba96747186c.tar.bz2 busybox-w32-066e76befe5d39fc3451846af94cbba96747186c.zip |
Replace a few more bb_info_msg's by bb_error_msg or printf
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/traceroute.c')
-rw-r--r-- | networking/traceroute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/traceroute.c b/networking/traceroute.c index 642110c54..eee4f8873 100644 --- a/networking/traceroute.c +++ b/networking/traceroute.c | |||
@@ -497,7 +497,7 @@ send_probe(int seq, int ttl) | |||
497 | 497 | ||
498 | res = xsendto(sndsock, out, len, &dest_lsa->u.sa, dest_lsa->len); | 498 | res = xsendto(sndsock, out, len, &dest_lsa->u.sa, dest_lsa->len); |
499 | if (res != len) | 499 | if (res != len) |
500 | bb_info_msg("sent %d octets, ret=%d", len, res); | 500 | bb_error_msg("sent %d octets, ret=%d", len, res); |
501 | } | 501 | } |
502 | 502 | ||
503 | #if ENABLE_FEATURE_TRACEROUTE_VERBOSE | 503 | #if ENABLE_FEATURE_TRACEROUTE_VERBOSE |