commit | c1270088401f1e3f4f8a6bfa2ff5b7228c4a8da0 | [log] [tgz] |
---|---|---|
author | Glenn L McGrath <bug1@ihug.co.nz> | Wed Jul 11 17:32:14 2001 +0000 |
committer | Glenn L McGrath <bug1@ihug.co.nz> | Wed Jul 11 17:32:14 2001 +0000 |
tree | 06b6690e1666bbdccc2b7bb809f3c1bbd8ce2ac3 | |
parent | 481d19b38e068e7db8459cb0e108f8049ce5919d [diff] [blame] |
Allow unarchive to redirect stdout (tobe used by dpkg applet)
diff --git a/cpio.c b/cpio.c index 101d6ec..12a4340 100644 --- a/cpio.c +++ b/cpio.c
@@ -85,7 +85,7 @@ optind++; } - unarchive(src_stream, &get_header_cpio, extract_function, "./", extract_names); + unarchive(src_stream, stdout, &get_header_cpio, extract_function, "./", extract_names); if (oldmask) umask(oldmask); /* Restore umask if we changed it */ return EXIT_SUCCESS; }