diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-05 14:46:07 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-05 14:46:07 +0000 |
commit | 27421a1878847389391c1a43420baaccf57057a7 (patch) | |
tree | 73e57d430a5828d242b78deb0a591a99f0df44a9 /archival/ar.c | |
parent | bef14d7a878049a01f1fb9b412611a2d64c2b154 (diff) | |
download | busybox-w32-27421a1878847389391c1a43420baaccf57057a7.tar.gz busybox-w32-27421a1878847389391c1a43420baaccf57057a7.tar.bz2 busybox-w32-27421a1878847389391c1a43420baaccf57057a7.zip |
1) bb_opt_complementaly -> bb_opt_complementally
2) better support long options
3) new flag '!' for bb_opt_complementally: produce bb_show_usage() if BB_GETOPT_ERROR internally
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 8326aa6de..21096d712 100644 --- a/archival/ar.c +++ b/archival/ar.c | |||
@@ -67,10 +67,10 @@ extern int ar_main(int argc, char **argv) | |||
67 | 67 | ||
68 | archive_handle = init_handle(); | 68 | archive_handle = init_handle(); |
69 | 69 | ||
70 | bb_opt_complementaly = "p~tx:t~px:x~pt"; | 70 | bb_opt_complementally = "!p~tx:t~px:x~pt"; |
71 | opt = bb_getopt_ulflags(argc, argv, "ptxovcr"); | 71 | opt = bb_getopt_ulflags(argc, argv, "ptxovcr"); |
72 | 72 | ||
73 | if ((opt & BB_GETOPT_ERROR) || (opt == 0) || (optind == argc)) { | 73 | if ((opt == 0) || (optind == argc)) { |
74 | bb_show_usage(); | 74 | bb_show_usage(); |
75 | } | 75 | } |
76 | 76 | ||