]> git.notmuchmail.org Git - notmuch/blobdiff - notmuch-dump.c
lib/parse-sexp: stem unquoted atoms
[notmuch] / notmuch-dump.c
index 04ecd6a38564c0359bff08d1897714a44fa9f344..5c8213bee7892d602367971cb71c2ab436c0324e 100644 (file)
@@ -361,14 +361,11 @@ notmuch_database_dump (notmuch_database_t *notmuch,
 }
 
 int
-notmuch_dump_command (unused(notmuch_config_t *config), notmuch_database_t *notmuch,
-                     int argc, char *argv[])
+notmuch_dump_command (notmuch_database_t *notmuch, int argc, char *argv[])
 {
     const char *query_str = NULL;
     int ret;
 
-    notmuch_exit_if_unmatched_db_uuid (notmuch);
-
     const char *output_file_name = NULL;
     int opt_index;
 
@@ -395,7 +392,7 @@ notmuch_dump_command (unused(notmuch_config_t *config), notmuch_database_t *notm
     if (opt_index < 0)
        return EXIT_FAILURE;
 
-    notmuch_process_shared_options (argv[0]);
+    notmuch_process_shared_options (notmuch, argv[0]);
 
     if (include == 0)
        include = DUMP_INCLUDE_CONFIG | DUMP_INCLUDE_TAGS | DUMP_INCLUDE_PROPERTIES;