Replace a few more bb_info_msg's by bb_error_msg or printf
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@ -834,10 +834,10 @@ static NOINLINE servtab_t *parse_one_line(void)
|
||||
goto parse_err;
|
||||
}
|
||||
|
||||
// bb_info_msg(
|
||||
// "ENTRY[%s][%s][%s][%d][%d][%d][%d][%d][%s][%s][%s]",
|
||||
// sep->se_local_hostname, sep->se_service, sep->se_proto, sep->se_wait, sep->se_proto_no,
|
||||
// sep->se_max, sep->se_count, sep->se_time, sep->se_user, sep->se_group, sep->se_program);
|
||||
//bb_error_msg(
|
||||
// "ENTRY[%s][%s][%s][%d][%d][%d][%d][%d][%s][%s][%s]",
|
||||
// sep->se_local_hostname, sep->se_service, sep->se_proto, sep->se_wait, sep->se_proto_no,
|
||||
// sep->se_max, sep->se_count, sep->se_time, sep->se_user, sep->se_group, sep->se_program);
|
||||
|
||||
/* check if the hostname specifier is a comma separated list
|
||||
* of hostnames. we'll make new entries for each address. */
|
||||
|
@ -497,7 +497,7 @@ send_probe(int seq, int ttl)
|
||||
|
||||
res = xsendto(sndsock, out, len, &dest_lsa->u.sa, dest_lsa->len);
|
||||
if (res != len)
|
||||
bb_info_msg("sent %d octets, ret=%d", len, res);
|
||||
bb_error_msg("sent %d octets, ret=%d", len, res);
|
||||
}
|
||||
|
||||
#if ENABLE_FEATURE_TRACEROUTE_VERBOSE
|
||||
|
@ -82,7 +82,7 @@ int tunctl_main(int argc UNUSED_PARAM, char **argv)
|
||||
// delete?
|
||||
if (opts & OPT_d) {
|
||||
IOCTL(fd, TUNSETPERSIST, (void *)(uintptr_t)0);
|
||||
bb_info_msg("Set '%s' %spersistent", ifr.ifr_name, "non");
|
||||
printf("Set '%s' nonpersistent\n", ifr.ifr_name);
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user