mirror of https://github.com/mirror/busybox.git
usage: do not print trailing space for commands which have no arguments
function old new delta bb_show_usage 120 130 +10 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>pull/3/head
parent
cbe8c65e59
commit
253f555f01
|
@ -169,8 +169,11 @@ void FAST_FUNC bb_show_usage(void)
|
|||
else {
|
||||
full_write2_str("\nUsage: ");
|
||||
full_write2_str(applet_name);
|
||||
full_write2_str(" ");
|
||||
full_write2_str(p);
|
||||
if (p[0]) {
|
||||
if (p[0] != '\n')
|
||||
full_write2_str(" ");
|
||||
full_write2_str(p);
|
||||
}
|
||||
full_write2_str("\n");
|
||||
}
|
||||
if (ENABLE_FEATURE_CLEAN_UP)
|
||||
|
|
Loading…
Reference in New Issue