diff options
Diffstat (limited to 'dpkg_deb.c')
-rw-r--r-- | dpkg_deb.c | 3 |
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) { |