From fbbd360b3c680ea76e67c04413d0a1430caf07bd Mon Sep 17 00:00:00 2001 From: Tim Riker Date: Fri, 22 Jun 2001 00:14:20 +0000 Subject: create_path -> make_directory --- libbb/unarchive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbb/unarchive.c b/libbb/unarchive.c index a0cc28eca..3fbd6ef31 100644 --- a/libbb/unarchive.c +++ b/libbb/unarchive.c @@ -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; } } -- cgit v1.2.3