diff options
Diffstat (limited to 'debianutils/run_parts.c')
-rw-r--r-- | debianutils/run_parts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debianutils/run_parts.c b/debianutils/run_parts.c index 2854a539c..37e8487e1 100644 --- a/debianutils/run_parts.c +++ b/debianutils/run_parts.c | |||
@@ -159,14 +159,14 @@ int run_parts_main(int argc UNUSED_PARAM, char **argv) | |||
159 | continue; | 159 | continue; |
160 | } | 160 | } |
161 | cmd[0] = name; | 161 | cmd[0] = name; |
162 | ret = wait4pid(spawn(cmd)); | 162 | ret = spawn_and_wait(cmd); |
163 | if (ret == 0) | 163 | if (ret == 0) |
164 | continue; | 164 | continue; |
165 | n = 1; | 165 | n = 1; |
166 | if (ret < 0) | 166 | if (ret < 0) |
167 | bb_perror_msg("can't execute '%s'", name); | 167 | bb_perror_msg("can't execute '%s'", name); |
168 | else /* ret > 0 */ | 168 | else /* ret > 0 */ |
169 | bb_error_msg("%s exited with code %d", name, ret); | 169 | bb_error_msg("%s exited with code %d", name, ret & 0xff); |
170 | } | 170 | } |
171 | 171 | ||
172 | return n; | 172 | return n; |