X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-compact.c;h=5be551d4ed733750cf1d685bcc89ac831e19de4b;hp=6c5909386da8e49ea9fd5dfe56c947fcbadafdc1;hb=23d86773b9e1b8111921af94f7f14ea0867eaee2;hpb=89fe006ca421142bfba0969c140b633ad520832c diff --git a/notmuch-compact.c b/notmuch-compact.c index 6c590938..5be551d4 100644 --- a/notmuch-compact.c +++ b/notmuch-compact.c @@ -38,11 +38,15 @@ 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; + + notmuch_process_shared_options (argv[0]); if (! quiet) printf ("Compacting database...\n"); @@ -50,7 +54,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 +64,5 @@ notmuch_compact_command (notmuch_config_t *config, int argc, char *argv[]) printf ("Done.\n"); } - return 0; + return EXIT_SUCCESS; }