diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-07-11 17:32:14 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-07-11 17:32:14 +0000 |
commit | c1270088401f1e3f4f8a6bfa2ff5b7228c4a8da0 (patch) | |
tree | 06b6690e1666bbdccc2b7bb809f3c1bbd8ce2ac3 /archival/ar.c | |
parent | 481d19b38e068e7db8459cb0e108f8049ce5919d (diff) | |
download | busybox-w32-c1270088401f1e3f4f8a6bfa2ff5b7228c4a8da0.tar.gz busybox-w32-c1270088401f1e3f4f8a6bfa2ff5b7228c4a8da0.tar.bz2 busybox-w32-c1270088401f1e3f4f8a6bfa2ff5b7228c4a8da0.zip |
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 09a4a8894..2a764ff5e 100644 --- a/archival/ar.c +++ b/archival/ar.c | |||
@@ -84,6 +84,6 @@ extern int ar_main(int argc, char **argv) | |||
84 | optind++; | 84 | optind++; |
85 | } | 85 | } |
86 | 86 | ||
87 | unarchive(src_stream, &get_header_ar, extract_function, "./", extract_names); | 87 | unarchive(src_stream, stdout, &get_header_ar, extract_function, "./", extract_names); |
88 | return EXIT_SUCCESS; | 88 | return EXIT_SUCCESS; |
89 | } | 89 | } |