diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-10-12 08:34:27 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-10-12 08:34:27 +0000 |
commit | f1ab127077666ceb25e792deb4c4907555f40b84 (patch) | |
tree | f4070ae74cc72a5ddce19a0631805dfca7827b7f | |
parent | f5888696967416075ba52434ed6059e3a7f4957b (diff) | |
download | busybox-w32-f1ab127077666ceb25e792deb4c4907555f40b84.tar.gz busybox-w32-f1ab127077666ceb25e792deb4c4907555f40b84.tar.bz2 busybox-w32-f1ab127077666ceb25e792deb4c4907555f40b84.zip |
Prepend '-' to the first argument if required, more const, indent
-rw-r--r-- | archival/ar.c | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/archival/ar.c b/archival/ar.c index 70deb5cbb..de5bc9b84 100644 --- a/archival/ar.c +++ b/archival/ar.c | |||
@@ -49,22 +49,27 @@ static void header_verbose_list_ar(const file_header_t *file_header) | |||
49 | printf("%s %d/%d%7d %s %s\n", &mode[1], file_header->uid, file_header->gid, (int) file_header->size, &mtime[4], file_header->name); | 49 | printf("%s %d/%d%7d %s %s\n", &mode[1], file_header->uid, file_header->gid, (int) file_header->size, &mtime[4], file_header->name); |
50 | } | 50 | } |
51 | 51 | ||
52 | #define AR_CTX_PRINT 0x01 | 52 | #define AR_CTX_PRINT 0x01 |
53 | #define AR_CTX_LIST 0x02 | 53 | #define AR_CTX_LIST 0x02 |
54 | #define AR_CTX_EXTRACT 0x04 | 54 | #define AR_CTX_EXTRACT 0x04 |
55 | #define AR_OPT_PRESERVE_DATE 0x08 | 55 | #define AR_OPT_PRESERVE_DATE 0x08 |
56 | #define AR_OPT_VERBOSE 0x10 | 56 | #define AR_OPT_VERBOSE 0x10 |
57 | #define AR_OPT_CREATE 0x20 | 57 | #define AR_OPT_CREATE 0x20 |
58 | #define AR_OPT_INSERT 0x40 | 58 | #define AR_OPT_INSERT 0x40 |
59 | 59 | ||
60 | extern int ar_main(int argc, char **argv) | 60 | extern int ar_main(int argc, char **argv) |
61 | { | 61 | { |
62 | archive_handle_t *archive_handle; | 62 | archive_handle_t *archive_handle; |
63 | unsigned long opt; | 63 | unsigned long opt; |
64 | char *msg_unsupported_err = "Archive %s not supported. Install binutils 'ar'."; | 64 | static const char msg_unsupported_err[] = |
65 | "Archive %s not supported. Install binutils 'ar'."; | ||
65 | char magic[8]; | 66 | char magic[8]; |
66 | 67 | ||
67 | archive_handle = init_handle(); | 68 | archive_handle = init_handle(); |
69 | |||
70 | /* Prepend '-' to the first argument if required */ | ||
71 | if (argv[1][0] != '-') | ||
72 | argv[1] = bb_xasprintf("-%s", argv[1]); | ||
68 | 73 | ||
69 | bb_opt_complementally = "?p~tx:t~px:x~pt"; | 74 | bb_opt_complementally = "?p~tx:t~px:x~pt"; |
70 | opt = bb_getopt_ulflags(argc, argv, "ptxovcr"); | 75 | opt = bb_getopt_ulflags(argc, argv, "ptxovcr"); |