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:
Denys Vlasenko 2016-03-30 16:20:28 +02:00
parent 76b680c7a8
commit 066e76befe
8 changed files with 11 additions and 11 deletions

View file

@ -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;
}