commit | fbbd360b3c680ea76e67c04413d0a1430caf07bd | [log] [tgz] |
---|---|---|
author | Tim Riker <tim@rikers.org> | Fri Jun 22 00:14:20 2001 +0000 |
committer | Tim Riker <tim@rikers.org> | Fri Jun 22 00:14:20 2001 +0000 |
tree | 3cad302d79fad765472be244059c5d4686cfe10c | |
parent | 8071c021311afb592bb6710b841350018ba97b9d [diff] |
create_path -> make_directory
diff --git a/libbb/unarchive.c b/libbb/unarchive.c index a0cc28e..3fbd6ef 100644 --- a/libbb/unarchive.c +++ b/libbb/unarchive.c
@@ -142,7 +142,7 @@ /* Use create_path instead of mkdir incase prefix path * hasnt been created */ if (function & extract_create_dirs) { - if (create_path(full_name, file_entry->mode) == FALSE) { + if (make_directory(full_name, file_entry->mode, FILEUTILS_RECUR) < 0) { return NULL; } }