aboutsummaryrefslogtreecommitdiff
path: root/dpkg_deb.c
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-06-22 09:22:06 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-06-22 09:22:06 +0000
commite1886edd0ca3ea6f622c70d687a27f2b7eef52a7 (patch)
tree5a1924092009892cc80f0b0947ec1bae17ca3b1c /dpkg_deb.c
parentdb3c0c3742717789043407a05c90c8c8eef0dd5e (diff)
downloadbusybox-w32-e1886edd0ca3ea6f622c70d687a27f2b7eef52a7.tar.gz
busybox-w32-e1886edd0ca3ea6f622c70d687a27f2b7eef52a7.tar.bz2
busybox-w32-e1886edd0ca3ea6f622c70d687a27f2b7eef52a7.zip
cpio applet, and changes to associated code
git-svn-id: svn://busybox.net/trunk/busybox@2887 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'dpkg_deb.c')
-rw-r--r--dpkg_deb.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dpkg_deb.c b/dpkg_deb.c
index 77172b0f6..b1cbb1bbc 100644
--- a/dpkg_deb.c
+++ b/dpkg_deb.c
@@ -26,7 +26,7 @@ extern int dpkg_deb_main(int argc, char **argv)
26 char *output_buffer = NULL; 26 char *output_buffer = NULL;
27 int opt = 0; 27 int opt = 0;
28 int arg_type = 0; 28 int arg_type = 0;
29 int deb_extract_funct = extract_create_dirs; 29 int deb_extract_funct = extract_create_dirs | extract_unconditional;
30 30
31 const int arg_type_prefix = 1; 31 const int arg_type_prefix = 1;
32 const int arg_type_field = 2; 32 const int arg_type_field = 2;
@@ -92,6 +92,7 @@ extern int dpkg_deb_main(int argc, char **argv)
92 strcat(prefix, "/"); 92 strcat(prefix, "/");
93 } 93 }
94 } 94 }
95 mkdir(prefix, 0777);
95 } 96 }
96 97
97 if (arg_type == arg_type_filename) { 98 if (arg_type == arg_type_filename) {