X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=notmuch-reindex.c;h=b40edbb6df3253f30827b624a98f73fc5d7b2acf;hb=036734252d07d8568937073d4f2d366bcb06bc4e;hp=df566a7c9b588bd68019b6ea2168aed9d47b94c3;hpb=eef21c284742fa5ae14d7d352acc3a4dc98821ce;p=notmuch diff --git a/notmuch-reindex.c b/notmuch-reindex.c index df566a7c..b40edbb6 100644 --- a/notmuch-reindex.c +++ b/notmuch-reindex.c @@ -26,7 +26,7 @@ static volatile sig_atomic_t interrupted; static void handle_sigint (unused (int sig)) { - static char msg[] = "Stopping... \n"; + static const char msg[] = "Stopping... \n"; /* This write is "opportunistic", so it's okay to ignore the * result. It is not required for correctness, and if it does @@ -83,8 +83,7 @@ reindex_query (notmuch_database_t *notmuch, const char *query_string, } int -notmuch_reindex_command (unused(notmuch_config_t *config), notmuch_database_t *notmuch, - int argc, char *argv[]) +notmuch_reindex_command (notmuch_database_t *notmuch, int argc, char *argv[]) { char *query_string = NULL; struct sigaction action; @@ -109,9 +108,7 @@ notmuch_reindex_command (unused(notmuch_config_t *config), notmuch_database_t *n if (opt_index < 0) return EXIT_FAILURE; - notmuch_process_shared_options (argv[0]); - - notmuch_exit_if_unmatched_db_uuid (notmuch); + notmuch_process_shared_options (notmuch, argv[0]); status = notmuch_process_shared_indexing_options (notmuch); if (status != NOTMUCH_STATUS_SUCCESS) {