mirror of
https://git.busybox.net/busybox
synced 2026-02-15 22:16:09 +00:00
create_path -> make_directory
This commit is contained in:
parent
8071c02131
commit
fbbd360b3c
1 changed files with 1 additions and 1 deletions
|
|
@ -142,7 +142,7 @@ char *extract_archive(FILE *src_stream, FILE *out_stream, const file_header_t *f
|
|||
/* 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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue