summaryrefslogtreecommitdiffstats
path: root/notmuch-restore.c
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2021-08-24 08:17:10 -0700
committerDavid Bremner <david@tethera.net>2021-09-04 17:07:19 -0700
commitd447b694b498c3e18a22f1eb15139a798c6aab26 (patch)
tree7cc9c4f01f7a91da530743ec3a25441f38b9732e /notmuch-restore.c
parent005c6201184c539d23d076303bd360bdba412e48 (diff)
CLI: make variable n_requested_db_uuid file scope.
It turns out that now that we pass an open database into the subcommands, it is easy to check any requested uuid against the database at the same time as we process the other shared arguments. This results in overall less boilerplate code, as well as making a CLI scope function and variable file scope in notmuch.c.
Diffstat (limited to 'notmuch-restore.c')
-rw-r--r--notmuch-restore.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/notmuch-restore.c b/notmuch-restore.c
index 1a81212f..1cce004a 100644
--- a/notmuch-restore.c
+++ b/notmuch-restore.c
@@ -272,8 +272,7 @@ notmuch_restore_command (notmuch_database_t *notmuch, int argc, char *argv[])
goto DONE;
}
- notmuch_process_shared_options (argv[0]);
- notmuch_exit_if_unmatched_db_uuid (notmuch);
+ notmuch_process_shared_options (notmuch, argv[0]);
if (include == 0) {
include = DUMP_INCLUDE_CONFIG | DUMP_INCLUDE_PROPERTIES | DUMP_INCLUDE_TAGS;