diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-21 08:37:13 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-21 08:37:13 +0000 |
commit | 84c8daa11f4c656bb4ba50b6e1c6d3b34c0f1b39 (patch) | |
tree | 22d4b9ad41299352a8f6e3e5ec80bf590df302d1 | |
parent | 395410b748e0ca0a673da4d288cbf89f6cff3c93 (diff) | |
download | busybox-w32-84c8daa11f4c656bb4ba50b6e1c6d3b34c0f1b39.tar.gz busybox-w32-84c8daa11f4c656bb4ba50b6e1c6d3b34c0f1b39.tar.bz2 busybox-w32-84c8daa11f4c656bb4ba50b6e1c6d3b34c0f1b39.zip |
help text: test --help doesnt print it (by design),
so do not account for it
-rw-r--r-- | include/usage.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h index 61c5c8ee3..dbee32eb2 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -4042,9 +4042,10 @@ | |||
4042 | "\n -i Run as inetd subservice" \ | 4042 | "\n -i Run as inetd subservice" \ |
4043 | ) | 4043 | ) |
4044 | 4044 | ||
4045 | /* "test --help" does not print help (POSIX compat), only "[ --help" does. | ||
4046 | * We display "<applet> EXPRESSION ]" here (not "<applet> EXPRESSION") */ | ||
4045 | #define test_trivial_usage \ | 4047 | #define test_trivial_usage \ |
4046 | "EXPRESSION\n" \ | 4048 | "EXPRESSION ]" |
4047 | " or [ EXPRESSION ]" | ||
4048 | #define test_full_usage "\n\n" \ | 4049 | #define test_full_usage "\n\n" \ |
4049 | "Check file types and compares values returning an exit code\n" \ | 4050 | "Check file types and compares values returning an exit code\n" \ |
4050 | "determined by the value of EXPRESSION" | 4051 | "determined by the value of EXPRESSION" |