aboutsummaryrefslogtreecommitdiff
path: root/networking/tunctl.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-03-30 16:20:28 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2016-03-30 16:20:28 +0200
commit066e76befe5d39fc3451846af94cbba96747186c (patch)
treef809b807a88c8a281c3cb02c7df2ab4c83b902cb /networking/tunctl.c
parent76b680c7a8d5a99e46ab8d9cad49aed0cfc440a7 (diff)
downloadbusybox-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/tunctl.c')
-rw-r--r--networking/tunctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tunctl.c b/networking/tunctl.c
index 3a0870eb5..941e8bbd3 100644
--- a/networking/tunctl.c
+++ b/networking/tunctl.c
@@ -82,7 +82,7 @@ int tunctl_main(int argc UNUSED_PARAM, char **argv)
82 // delete? 82 // delete?
83 if (opts & OPT_d) { 83 if (opts & OPT_d) {
84 IOCTL(fd, TUNSETPERSIST, (void *)(uintptr_t)0); 84 IOCTL(fd, TUNSETPERSIST, (void *)(uintptr_t)0);
85 bb_info_msg("Set '%s' %spersistent", ifr.ifr_name, "non"); 85 printf("Set '%s' nonpersistent\n", ifr.ifr_name);
86 return EXIT_SUCCESS; 86 return EXIT_SUCCESS;
87 } 87 }
88 88