diff options
author | Glenn L McGrath | 2001-07-11 17:32:14 +0000 |
---|---|---|
committer | Glenn L McGrath | 2001-07-11 17:32:14 +0000 |
commit | c1270088401f1e3f4f8a6bfa2ff5b7228c4a8da0 (patch) | |
tree | 06b6690e1666bbdccc2b7bb809f3c1bbd8ce2ac3 /archival/ar.c | |
parent | 481d19b38e068e7db8459cb0e108f8049ce5919d (diff) | |
download | busybox-c1270088401f1e3f4f8a6bfa2ff5b7228c4a8da0.zip busybox-c1270088401f1e3f4f8a6bfa2ff5b7228c4a8da0.tar.gz |
Allow unarchive to redirect stdout (tobe used by dpkg applet)
Diffstat (limited to 'archival/ar.c')
-rw-r--r-- | archival/ar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/ar.c b/archival/ar.c index 09a4a88..2a764ff 100644 --- a/archival/ar.c +++ b/archival/ar.c @@ -84,6 +84,6 @@ extern int ar_main(int argc, char **argv) optind++; } - unarchive(src_stream, &get_header_ar, extract_function, "./", extract_names); + unarchive(src_stream, stdout, &get_header_ar, extract_function, "./", extract_names); return EXIT_SUCCESS; } |