aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Riker <tim@rikers.org>2001-06-22 00:14:20 +0000
committerTim Riker <tim@rikers.org>2001-06-22 00:14:20 +0000
commitfbbd360b3c680ea76e67c04413d0a1430caf07bd (patch)
tree3cad302d79fad765472be244059c5d4686cfe10c
parent8071c021311afb592bb6710b841350018ba97b9d (diff)
downloadbusybox-w32-fbbd360b3c680ea76e67c04413d0a1430caf07bd.tar.gz
busybox-w32-fbbd360b3c680ea76e67c04413d0a1430caf07bd.tar.bz2
busybox-w32-fbbd360b3c680ea76e67c04413d0a1430caf07bd.zip
create_path -> make_directory
-rw-r--r--libbb/unarchive.c2
1 files changed, 1 insertions, 1 deletions
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
142 /* Use create_path instead of mkdir incase prefix path 142 /* Use create_path instead of mkdir incase prefix path
143 * hasnt been created */ 143 * hasnt been created */
144 if (function & extract_create_dirs) { 144 if (function & extract_create_dirs) {
145 if (create_path(full_name, file_entry->mode) == FALSE) { 145 if (make_directory(full_name, file_entry->mode, FILEUTILS_RECUR) < 0) {
146 return NULL; 146 return NULL;
147 } 147 }
148 } 148 }