diff options
author | Denis Vlasenko | 2007-11-12 02:13:12 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-11-12 02:13:12 +0000 |
commit | 059c91711f664927534246bd5c1d5e202fcf8e1d (patch) | |
tree | bf40a8f1895af5bae790c65435c8d4ae621c55cf /archival/rpm.c | |
parent | 4bfb84db4e941e227f07346a3b3a56afd7d1e3fe (diff) | |
download | busybox-059c91711f664927534246bd5c1d5e202fcf8e1d.zip busybox-059c91711f664927534246bd5c1d5e202fcf8e1d.tar.gz |
open_transformer: do not duplicate "<program> -cf -"
text data bss dec hex filename
677858 738 7236 685832 a7708 busybox_old
677804 738 7236 685778 a76d2 busybox_unstripped
Diffstat (limited to 'archival/rpm.c')
-rw-r--r-- | archival/rpm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/rpm.c b/archival/rpm.c index f078aea..41b8c81 100644 --- a/archival/rpm.c +++ b/archival/rpm.c @@ -237,7 +237,7 @@ static void extract_cpio_gz(int fd) } xchdir("/"); /* Install RPM's to root */ - archive_handle->src_fd = open_transformer(archive_handle->src_fd, xformer, xformer_prog, xformer_prog, "-cf", "-", NULL); + archive_handle->src_fd = open_transformer(archive_handle->src_fd, xformer, xformer_prog); archive_handle->offset = 0; while (get_header_cpio(archive_handle) == EXIT_SUCCESS) continue; |