Nore unarchive (and doc) fixes from Laurence Anderson
This commit is contained in:
@@ -21,7 +21,6 @@
|
||||
* Limitations:
|
||||
* Doesn't check CRC's
|
||||
* Only supports new ASCII and CRC formats
|
||||
* Doesnt support hard links
|
||||
*
|
||||
*/
|
||||
#include <fcntl.h>
|
||||
@@ -45,9 +44,9 @@ extern int cpio_main(int argc, char **argv)
|
||||
case 'i': // extract
|
||||
extract_function |= extract_all_to_fs;
|
||||
break;
|
||||
case 'd': // create directories
|
||||
extract_function |= extract_create_dirs;
|
||||
oldmask = umask(077); /* Make create_path act like GNU cpio */
|
||||
case 'd': // create _leading_ directories
|
||||
extract_function |= extract_create_leading_dirs;
|
||||
oldmask = umask(077); /* Make make_directory act like GNU cpio */
|
||||
break;
|
||||
case 'm': // preserve modification time
|
||||
extract_function |= extract_preserve_date;
|
||||
|
||||
@@ -26,7 +26,7 @@ extern int dpkg_deb_main(int argc, char **argv)
|
||||
char *output_buffer = NULL;
|
||||
int opt = 0;
|
||||
int arg_type = 0;
|
||||
int deb_extract_funct = extract_create_dirs | extract_unconditional;
|
||||
int deb_extract_funct = extract_create_leading_dirs | extract_unconditional;
|
||||
|
||||
const int arg_type_prefix = 1;
|
||||
const int arg_type_field = 2;
|
||||
|
||||
Reference in New Issue
Block a user