diff options
author | Denys Vlasenko | 2010-01-04 14:30:37 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-01-04 14:30:37 +0100 |
commit | 40e5a30b66b51440f92826683c833ae23765390a (patch) | |
tree | 9ef02ecdcef5c63acfb633a8ed75fcc10ea642c7 /archival/ar.c | |
parent | 2ec91aead52d6ea6a42420005119ebb281a76cdc (diff) | |
download | busybox-40e5a30b66b51440f92826683c833ae23765390a.zip busybox-40e5a30b66b51440f92826683c833ae23765390a.tar.gz |
ar: fix two bugs, one added by prev comment and other we SEGV with no params
cpio: use optind less
function old new delta
ar_main 189 184 -5
cpio_main 549 533 -16
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 0/2 up/down: 0/-21) Total: -21 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/ar.c')
-rw-r--r-- | archival/ar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/ar.c b/archival/ar.c index 1b43502..4f21bf8 100644 --- a/archival/ar.c +++ b/archival/ar.c @@ -49,7 +49,7 @@ int ar_main(int argc UNUSED_PARAM, char **argv) archive_handle = init_handle(); /* Prepend '-' to the first argument if required */ - opt_complementary = "--:p:t:x:-1:p--tx:t--px:x--pt"; + opt_complementary = "--:-1:p:t:x:-1:p--tx:t--px:x--pt"; opt = getopt32(argv, "ptxovcr"); argv += optind; @@ -75,7 +75,7 @@ int ar_main(int argc UNUSED_PARAM, char **argv) bb_error_msg_and_die(msg_unsupported_err, "insertion"); } - archive_handle->src_fd = xopen(argv[optind++], O_RDONLY); + archive_handle->src_fd = xopen(*argv++, O_RDONLY); while (*argv) { archive_handle->filter = filter_accept_list; |