X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-compact.c;h=937372161df1abc95cc569da44a212367fe8a01f;hp=6c5909386da8e49ea9fd5dfe56c947fcbadafdc1;hb=a7f8a7fb915b8d8d835ffbb6fef784f85ebebc0b;hpb=89fe006ca421142bfba0969c140b633ad520832c diff --git a/notmuch-compact.c b/notmuch-compact.c index 6c590938..93737216 100644 --- a/notmuch-compact.c +++ b/notmuch-compact.c @@ -38,11 +38,20 @@ notmuch_compact_command (notmuch_config_t *config, int argc, char *argv[]) notmuch_opt_desc_t options[] = { { NOTMUCH_OPT_STRING, &backup_path, "backup", 0, 0 }, { NOTMUCH_OPT_BOOLEAN, &quiet, "quiet", 'q', 0 }, + { NOTMUCH_OPT_INHERIT, (void *) ¬much_shared_options, NULL, 0, 0 }, + { 0, 0, 0, 0, 0} }; opt_index = parse_arguments (argc, argv, options, 1); if (opt_index < 0) - return 1; + return EXIT_FAILURE; + + if (notmuch_requested_db_uuid) { + fprintf (stderr, "Error: --uuid not implemented for compact\n"); + return EXIT_FAILURE; + } + + notmuch_process_shared_options (argv[0]); if (! quiet) printf ("Compacting database...\n"); @@ -50,7 +59,7 @@ notmuch_compact_command (notmuch_config_t *config, int argc, char *argv[]) quiet ? NULL : status_update_cb, NULL); if (ret) { fprintf (stderr, "Compaction failed: %s\n", notmuch_status_to_string (ret)); - return 1; + return EXIT_FAILURE; } if (! quiet) { @@ -60,5 +69,5 @@ notmuch_compact_command (notmuch_config_t *config, int argc, char *argv[]) printf ("Done.\n"); } - return 0; + return EXIT_SUCCESS; }