aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-08-03 19:23:30 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-08-03 19:23:30 +0000
commit7ce47e698e247acfa3737281ab539eaa1c2787c7 (patch)
treeeab964cf76687aba0c9f006a376bed71c2bd4eee
parentc45b53940a39606d2a1ecaa61a5948ec99782f42 (diff)
downloadbusybox-w32-7ce47e698e247acfa3737281ab539eaa1c2787c7.tar.gz
busybox-w32-7ce47e698e247acfa3737281ab539eaa1c2787c7.tar.bz2
busybox-w32-7ce47e698e247acfa3737281ab539eaa1c2787c7.zip
ssd: fix -K/-S mixup in help text
-rw-r--r--include/usage.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/usage.h b/include/usage.h
index 7b26d650f..1f9d5621d 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -3650,8 +3650,8 @@
3650 "[OPTIONS] [-S|-K] ... [-- arguments...]" 3650 "[OPTIONS] [-S|-K] ... [-- arguments...]"
3651#define start_stop_daemon_full_usage "\n\n" \ 3651#define start_stop_daemon_full_usage "\n\n" \
3652 "Search for matching processes, and then\n" \ 3652 "Search for matching processes, and then\n" \
3653 "-S: stop all matching processes.\n" \ 3653 "-K: stop all matching processes.\n" \
3654 "-K: start a process unless a matching process is found.\n" \ 3654 "-S: start a process unless a matching process is found.\n" \
3655 USE_GETOPT_LONG( \ 3655 USE_GETOPT_LONG( \
3656 "\nProcess matching:" \ 3656 "\nProcess matching:" \
3657 "\n -u,--user USERNAME|UID Match only this user's processes" \ 3657 "\n -u,--user USERNAME|UID Match only this user's processes" \
@@ -3661,7 +3661,7 @@
3661 "\n in /proc/PID/cmdline" \ 3661 "\n in /proc/PID/cmdline" \
3662 "\n -p,--pidfile FILE Match a process with PID from the file" \ 3662 "\n -p,--pidfile FILE Match a process with PID from the file" \
3663 "\n All specified conditions must match" \ 3663 "\n All specified conditions must match" \
3664 "\n-K only:" \ 3664 "\n-S only:" \
3665 "\n -x,--exec EXECUTABLE Program to run" \ 3665 "\n -x,--exec EXECUTABLE Program to run" \
3666 "\n -a,--startas NAME Zeroth argument" \ 3666 "\n -a,--startas NAME Zeroth argument" \
3667 "\n -b,--background Background" \ 3667 "\n -b,--background Background" \
@@ -3670,7 +3670,7 @@
3670 ) \ 3670 ) \
3671 "\n -c,--chuid USER[:[GRP]] Change to user/group" \ 3671 "\n -c,--chuid USER[:[GRP]] Change to user/group" \
3672 "\n -m,--make-pidfile Write PID to the pidfile specified by -p" \ 3672 "\n -m,--make-pidfile Write PID to the pidfile specified by -p" \
3673 "\n-S only:" \ 3673 "\n-K only:" \
3674 "\n -s,--signal SIG Signal to send" \ 3674 "\n -s,--signal SIG Signal to send" \
3675 "\n -t,--test Match only, exit with 0 if a process is found" \ 3675 "\n -t,--test Match only, exit with 0 if a process is found" \
3676 "\nOther:" \ 3676 "\nOther:" \
@@ -3689,7 +3689,7 @@
3689 "\n command in /proc/PID/cmdline" \ 3689 "\n command in /proc/PID/cmdline" \
3690 "\n -p FILE Match a process with PID from the file" \ 3690 "\n -p FILE Match a process with PID from the file" \
3691 "\n All specified conditions must match" \ 3691 "\n All specified conditions must match" \
3692 "\n-K only:" \ 3692 "\n-S only:" \
3693 "\n -x EXECUTABLE Program to run" \ 3693 "\n -x EXECUTABLE Program to run" \
3694 "\n -a NAME Zeroth argument" \ 3694 "\n -a NAME Zeroth argument" \
3695 "\n -b Background" \ 3695 "\n -b Background" \
@@ -3698,7 +3698,7 @@
3698 ) \ 3698 ) \
3699 "\n -c USER[:[GRP]] Change to user/group" \ 3699 "\n -c USER[:[GRP]] Change to user/group" \
3700 "\n -m Write PID to the pidfile specified by -p" \ 3700 "\n -m Write PID to the pidfile specified by -p" \
3701 "\n-S only:" \ 3701 "\n-K only:" \
3702 "\n -s SIG Signal to send" \ 3702 "\n -s SIG Signal to send" \
3703 "\n -t Match only, exit with 0 if a process is found" \ 3703 "\n -t Match only, exit with 0 if a process is found" \
3704 "\nOther:" \ 3704 "\nOther:" \