]> git.notmuchmail.org Git - notmuch/blobdiff - notmuch-compact.c
test: use the python interpreter in sh.config
[notmuch] / notmuch-compact.c
index 6c5909386da8e49ea9fd5dfe56c947fcbadafdc1..5be551d4ed733750cf1d685bcc89ac831e19de4b 100644 (file)
@@ -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 *) &notmuch_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;
 }