diff options
Diffstat (limited to '')
-rw-r--r-- | archive.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archive.c b/archive.c index f55146f..3c5f12b 100644 --- a/archive.c +++ b/archive.c @@ -96,9 +96,10 @@ int main(int argc, char *argv[]) { for ( int opt; - 0 < (opt = getopt(argc, argv, "C:H:S:T:a:h:im:p:qs:tu:vw:y:")); + 0 < (opt = getopt(argc, argv, "A:C:H:S:T:a:h:im:p:qs:tu:vw:y:")); ) { switch (opt) { + break; case 'A': concatIndexEntries = strtoul(optarg, NULL, 10); break; case 'C': { int error = chdir(optarg); if (error) err(EX_NOINPUT, "%s", optarg); |