diff options
author | Rob Landley <rob@landley.net> | 2006-09-11 00:34:01 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-09-11 00:34:01 +0000 |
commit | 69674941ddf3a522772d4d9709b302e80bc6719e (patch) | |
tree | 3a748dea99473ad21cf5f7ca6a4cba013a8673ca /include | |
parent | 30772946156dc49d04389b61bcd828ed352a00cc (diff) | |
download | busybox-69674941ddf3a522772d4d9709b302e80bc6719e.tar.gz |
Error reporting fix for sulogin, plus remove help entries for options we never
implemented. (Plus a bit more of bbsh leaking in from my tree, but it
shouldn't hurt anything and I'm lazy...)
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/usage.h b/include/usage.h index a1ba0a282..7ebd660ac 100644 --- a/include/usage.h +++ b/include/usage.h @@ -265,6 +265,12 @@ #define bbconfig_full_usage \ "Print the config file which built busybox" +#define bbsh_trivial_usage \ + "[FILE]...\n" \ + "or: bbsh -c command [args]..." +#define bbsh_full_usage \ + "The bbsh shell (command interpreter)" + #define cp_trivial_usage \ "[OPTION]... SOURCE DEST" #define cp_full_usage \ @@ -2811,9 +2817,7 @@ USE_FEATURE_START_STOP_DAEMON_FANCY( \ #define sulogin_full_usage \ "Single user login\n" \ "Options:\n" \ - "\t-f\tDo not authenticate (user already authenticated)\n" \ - "\t-h\tName of the remote host for this login\n" \ - "\t-p\tPreserve environment" + "\t-t\tTimeout" #define sum_trivial_usage \ "[rs] [files...]" |