aboutsummaryrefslogtreecommitdiff
path: root/libbb/run_parts.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/run_parts.c')
-rw-r--r--libbb/run_parts.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libbb/run_parts.c b/libbb/run_parts.c
index 7f5fe459b..864460d0d 100644
--- a/libbb/run_parts.c
+++ b/libbb/run_parts.c
@@ -76,9 +76,7 @@ int run_parts(char **args, const unsigned char test_mode, char **env)
76 76
77 filename = concat_path_file(arg0, namelist[i]->d_name); 77 filename = concat_path_file(arg0, namelist[i]->d_name);
78 78
79 if (stat(filename, &st) < 0) { 79 xstat(filename, &st);
80 bb_perror_msg_and_die("failed to stat component %s", filename);
81 }
82 if (S_ISREG(st.st_mode) && !access(filename, X_OK)) { 80 if (S_ISREG(st.st_mode) && !access(filename, X_OK)) {
83 if (test_mode) { 81 if (test_mode) {
84 puts(filename); 82 puts(filename);