aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h1
-rw-r--r--include/usage.h17
2 files changed, 9 insertions, 9 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 9b52dd231..6e10cdc41 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -912,7 +912,6 @@ char *bb_simplify_path(const char *path);
912#define FAIL_DELAY 3 912#define FAIL_DELAY 3
913extern void bb_do_delay(int seconds); 913extern void bb_do_delay(int seconds);
914extern void change_identity(const struct passwd *pw); 914extern void change_identity(const struct passwd *pw);
915extern const char *change_identity_e2str(const struct passwd *pw);
916extern void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args) ATTRIBUTE_NORETURN; 915extern void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args) ATTRIBUTE_NORETURN;
917extern void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args); 916extern void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args);
918#if ENABLE_SELINUX 917#if ENABLE_SELINUX
diff --git a/include/usage.h b/include/usage.h
index f575f4676..a6d970de6 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -507,16 +507,17 @@ USE_FEATURE_BRCTL_FANCY("\n" \
507 " F Input from file" 507 " F Input from file"
508 508
509#define crond_trivial_usage \ 509#define crond_trivial_usage \
510 "-d[#] -c crondir -f -b" 510 "-fbS -l N " USE_DEBUG_CROND_OPTION("-d N ") "-L LOGFILE -c DIR"
511#define crond_full_usage \ 511#define crond_full_usage \
512 " -d [#] -l [#] -S -L logfile -f -b -c dir\n" \ 512 " -f Foreground\n" \
513 " -d num Debug level\n" \ 513 " -b Background (default)\n" \
514 " -l num Log level (8 - default)\n" \
515 " -S Log to syslog (default)\n" \ 514 " -S Log to syslog (default)\n" \
516 " -L file Log to file\n" \ 515 " -l Set log level. 0 is the most verbose, default 8\n" \
517 " -f Run in foreground\n" \ 516 USE_DEBUG_CROND_OPTION( \
518 " -b Run in background (default)\n" \ 517 " -d Set log level, log to stderr\n" \
519 " -c dir Working dir" 518 ) \
519 " -L Log to file\n" \
520 " -c Working dir"
520 521
521#define crontab_trivial_usage \ 522#define crontab_trivial_usage \
522 "[-c DIR] [-u USER] [-ler]|[FILE]" 523 "[-c DIR] [-u USER] [-ler]|[FILE]"