diff options
author | Ron Yorston <rmy@pobox.com> | 2023-06-16 13:02:47 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2023-06-16 13:02:47 +0100 |
commit | 4b3d7e62cff6015e1c4b856165efd90cf9182a5c (patch) | |
tree | 0a59c6a94a47c3e8f1a47b0a3218f9591b842385 /networking | |
parent | 0627e352656effac8d8e617378e7a68edfce41df (diff) | |
parent | 2ca39ffd447ca874fcea933194829717d5573247 (diff) | |
download | busybox-w32-4b3d7e62cff6015e1c4b856165efd90cf9182a5c.tar.gz busybox-w32-4b3d7e62cff6015e1c4b856165efd90cf9182a5c.tar.bz2 busybox-w32-4b3d7e62cff6015e1c4b856165efd90cf9182a5c.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'networking')
-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 97e6917aa..28571ae7f 100644 --- a/networking/tunctl.c +++ b/networking/tunctl.c | |||
@@ -124,8 +124,7 @@ int tunctl_main(int argc UNUSED_PARAM, char **argv) | |||
124 | if (opts & OPT_b) { | 124 | if (opts & OPT_b) { |
125 | puts(ifr.ifr_name); | 125 | puts(ifr.ifr_name); |
126 | } else { | 126 | } else { |
127 | printf("Set '%s' %spersistent", ifr.ifr_name, ""); | 127 | printf("Set '%s' persistent and owned by uid %ld", ifr.ifr_name, user); |
128 | printf(" and owned by uid %ld", user); | ||
129 | if (group != -1) | 128 | if (group != -1) |
130 | printf(" gid %ld", group); | 129 | printf(" gid %ld", group); |
131 | bb_putchar('\n'); | 130 | bb_putchar('\n'); |