diff options
Diffstat (limited to 'networking/tunctl.c')
-rw-r--r-- | networking/tunctl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/networking/tunctl.c b/networking/tunctl.c index 97e6917..28571ae 100644 --- a/networking/tunctl.c +++ b/networking/tunctl.c @@ -124,8 +124,7 @@ int tunctl_main(int argc UNUSED_PARAM, char **argv) if (opts & OPT_b) { puts(ifr.ifr_name); } else { - printf("Set '%s' %spersistent", ifr.ifr_name, ""); - printf(" and owned by uid %ld", user); + printf("Set '%s' persistent and owned by uid %ld", ifr.ifr_name, user); if (group != -1) printf(" gid %ld", group); bb_putchar('\n'); |