X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=notmuch-count.c;h=61722edbec2d571205470b1519447e548644eabe;hb=e76f6517de020783d828be59f461f1d4f465c4b4;hp=b76690c0d5eb776096c481f2aff6d9fd62a3e728;hpb=785c1e497f05cb89365669fea33cfbf9078a4b12;p=notmuch diff --git a/notmuch-count.c b/notmuch-count.c index b76690c0..61722edb 100644 --- a/notmuch-count.c +++ b/notmuch-count.c @@ -62,13 +62,12 @@ notmuch_count_command (void *ctx, int argc, char *argv[]) return 1; } - config = notmuch_config_open (ctx, NULL, NULL); + config = notmuch_config_open (ctx, NULL, FALSE); if (config == NULL) return 1; - notmuch = notmuch_database_open (notmuch_config_get_database_path (config), - NOTMUCH_DATABASE_MODE_READ_ONLY); - if (notmuch == NULL) + if (notmuch_database_open (notmuch_config_get_database_path (config), + NOTMUCH_DATABASE_MODE_READ_ONLY, ¬much)) return 1; query_str = query_string_from_args (ctx, argc-opt_index, argv+opt_index); @@ -107,7 +106,7 @@ notmuch_count_command (void *ctx, int argc, char *argv[]) } notmuch_query_destroy (query); - notmuch_database_close (notmuch); + notmuch_database_destroy (notmuch); return 0; }