commit | 891ee641cb7ffde66ae9cb565893bfdeadd1adf0 | [log] [tgz] |
---|---|---|
author | Glenn L McGrath <bug1@ihug.co.nz> | Sat Sep 28 08:30:47 2002 +0000 |
committer | Glenn L McGrath <bug1@ihug.co.nz> | Sat Sep 28 08:30:47 2002 +0000 |
tree | 4918a0db7654debaa847b86977e8ae25551a683c | |
parent | 8132e933e6cf0e6bffccb1902f872b584a32c580 [diff] |
Fail straight away rather than recursively printing error messages :)
diff --git a/libbb/make_directory.c b/libbb/make_directory.c index 2a2788b..3f81d9a 100644 --- a/libbb/make_directory.c +++ b/libbb/make_directory.c
@@ -61,7 +61,7 @@ if ((flags == FILEUTILS_RECUR) && (errno == EEXIST)) { ret = 0; } else { - perror_msg("Cannot create directory '%s'", path); + perror_msg_and_die("Cannot create directory '%s'", path); } } return(ret);