diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-03-08 16:06:18 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-03-08 16:06:18 +0100 |
commit | 3936222a0ac793f94824fbcb054148ceb8898425 (patch) | |
tree | 4a9ee1591188587358d164f281b26f9da08cef7d | |
parent | db169f253854db572c0c2b7e3d74ebbe6afdb97f (diff) | |
download | busybox-3936222a0ac793f94824fbcb054148ceb8898425.tar.gz |
remove stray newline in "iplink --help"
function old new delta
packed_usage 32547 32550 +3
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/ip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ip.c b/networking/ip.c index accf90759..9ecb99abb 100644 --- a/networking/ip.c +++ b/networking/ip.c @@ -157,7 +157,7 @@ //usage:#define iplink_trivial_usage //usage: /*Usage:iplink*/"set IFACE [up|down] [arp on|off] [multicast on|off]\n" //usage: " [promisc on|off] [mtu NUM] [name NAME] [qlen NUM] [address MAC]\n" -//usage: " [master IFACE | nomaster]\n" +//usage: " [master IFACE | nomaster]" // * short help shows only "set" command, long help continues (with just one "\n") // * and shows all other commands: //usage:#define iplink_full_usage "\n" |