diff options
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/chrt.c | 6 | ||||
-rw-r--r-- | miscutils/ionice.c | 6 | ||||
-rw-r--r-- | miscutils/setsid.c | 5 | ||||
-rw-r--r-- | miscutils/taskset.c | 6 | ||||
-rw-r--r-- | miscutils/time.c | 2 | ||||
-rw-r--r-- | miscutils/timeout.c | 2 |
6 files changed, 14 insertions, 13 deletions
diff --git a/miscutils/chrt.c b/miscutils/chrt.c index cc5660be7..e2b7f8ae0 100644 --- a/miscutils/chrt.c +++ b/miscutils/chrt.c | |||
@@ -115,9 +115,9 @@ int chrt_main(int argc UNUSED_PARAM, char **argv) | |||
115 | if (sched_setscheduler(pid, policy, &sp) < 0) | 115 | if (sched_setscheduler(pid, policy, &sp) < 0) |
116 | bb_perror_msg_and_die("can't %cet pid %d's policy", 's', pid); | 116 | bb_perror_msg_and_die("can't %cet pid %d's policy", 's', pid); |
117 | 117 | ||
118 | if (!*argv) /* "-p <priority> <pid> [...]" */ | 118 | if (!argv[0]) /* "-p <priority> <pid> [...]" */ |
119 | goto print_rt_info; | 119 | goto print_rt_info; |
120 | 120 | ||
121 | BB_EXECVP(*argv, argv); | 121 | BB_EXECVP(argv[0], argv); |
122 | bb_simple_perror_msg_and_die(*argv); | 122 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); |
123 | } | 123 | } |
diff --git a/miscutils/ionice.c b/miscutils/ionice.c index 361c141b8..8393cd8b2 100644 --- a/miscutils/ionice.c +++ b/miscutils/ionice.c | |||
@@ -89,9 +89,9 @@ int ionice_main(int argc UNUSED_PARAM, char **argv) | |||
89 | pri |= (ioclass << IOPRIO_CLASS_SHIFT); | 89 | pri |= (ioclass << IOPRIO_CLASS_SHIFT); |
90 | if (ioprio_set(IOPRIO_WHO_PROCESS, pid, pri) == -1) | 90 | if (ioprio_set(IOPRIO_WHO_PROCESS, pid, pri) == -1) |
91 | bb_perror_msg_and_die("ioprio_%cet", 's'); | 91 | bb_perror_msg_and_die("ioprio_%cet", 's'); |
92 | if (*argv) { | 92 | if (argv[0]) { |
93 | BB_EXECVP(*argv, argv); | 93 | BB_EXECVP(argv[0], argv); |
94 | bb_simple_perror_msg_and_die(*argv); | 94 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); |
95 | } | 95 | } |
96 | } | 96 | } |
97 | 97 | ||
diff --git a/miscutils/setsid.c b/miscutils/setsid.c index fd3283e30..60ee062e3 100644 --- a/miscutils/setsid.c +++ b/miscutils/setsid.c | |||
@@ -44,6 +44,7 @@ int setsid_main(int argc UNUSED_PARAM, char **argv) | |||
44 | setsid(); | 44 | setsid(); |
45 | } | 45 | } |
46 | 46 | ||
47 | BB_EXECVP(argv[1], argv + 1); | 47 | argv++; |
48 | bb_simple_perror_msg_and_die(argv[1]); | 48 | BB_EXECVP(argv[0], argv); |
49 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); | ||
49 | } | 50 | } |
diff --git a/miscutils/taskset.c b/miscutils/taskset.c index a0bbf0aa1..2891003df 100644 --- a/miscutils/taskset.c +++ b/miscutils/taskset.c | |||
@@ -129,9 +129,9 @@ int taskset_main(int argc UNUSED_PARAM, char **argv) | |||
129 | if (sched_setaffinity(pid, sizeof(mask), &mask)) | 129 | if (sched_setaffinity(pid, sizeof(mask), &mask)) |
130 | bb_perror_msg_and_die("can't %cet pid %d's affinity", 's', pid); | 130 | bb_perror_msg_and_die("can't %cet pid %d's affinity", 's', pid); |
131 | 131 | ||
132 | if (!*argv) /* "-p <aff> <pid> [...ignored...]" */ | 132 | if (!argv[0]) /* "-p <aff> <pid> [...ignored...]" */ |
133 | goto print_aff; /* print new affinity and exit */ | 133 | goto print_aff; /* print new affinity and exit */ |
134 | 134 | ||
135 | BB_EXECVP(*argv, argv); | 135 | BB_EXECVP(argv[0], argv); |
136 | bb_simple_perror_msg_and_die(*argv); | 136 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); |
137 | } | 137 | } |
diff --git a/miscutils/time.c b/miscutils/time.c index 6946c863f..f5d1e15fb 100644 --- a/miscutils/time.c +++ b/miscutils/time.c | |||
@@ -380,7 +380,7 @@ static void run_command(char *const *cmd, resource_t *resp) | |||
380 | versus merely warnings if the cast is left off. */ | 380 | versus merely warnings if the cast is left off. */ |
381 | BB_EXECVP(cmd[0], cmd); | 381 | BB_EXECVP(cmd[0], cmd); |
382 | xfunc_error_retval = (errno == ENOENT ? 127 : 126); | 382 | xfunc_error_retval = (errno == ENOENT ? 127 : 126); |
383 | bb_error_msg_and_die("can't run '%s'", cmd[0]); | 383 | bb_perror_msg_and_die("can't execute '%s'", cmd[0]); |
384 | } | 384 | } |
385 | 385 | ||
386 | /* Have signals kill the child but not self (if possible). */ | 386 | /* Have signals kill the child but not self (if possible). */ |
diff --git a/miscutils/timeout.c b/miscutils/timeout.c index 83ae56e69..273d26953 100644 --- a/miscutils/timeout.c +++ b/miscutils/timeout.c | |||
@@ -111,5 +111,5 @@ int timeout_main(int argc UNUSED_PARAM, char **argv) | |||
111 | argv[1] = sv2; | 111 | argv[1] = sv2; |
112 | #endif | 112 | #endif |
113 | BB_EXECVP(argv[0], argv); | 113 | BB_EXECVP(argv[0], argv); |
114 | bb_perror_msg_and_die("exec '%s'", argv[0]); | 114 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); |
115 | } | 115 | } |