diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-04 14:32:31 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-04 14:32:31 +0100 |
commit | 4928f3b90b3925e6f3cc234df48e46f88fc5689b (patch) | |
tree | 4b842446ac738736edc8fc34038eb543d8855f9a /archival/ar.c | |
parent | 40e5a30b66b51440f92826683c833ae23765390a (diff) |
ar: heh, there *was* "-1" already...
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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 4f21bf82f..fd7f8e4db 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 = "--:-1:p:t:x:-1:p--tx:t--px:x--pt"; + opt_complementary = "--:p:t:x:-1:p--tx:t--px:x--pt"; opt = getopt32(argv, "ptxovcr"); argv += optind; |