lib/open: do not consider .notmuch alone as an existing database.

It makes perfect sense for users to want to pre-create .notmuch,
e.g. to install hooks, so we should handle the case of a .notmuch
directory without an actual xapian database more gracefully.
This commit is contained in:
David Bremner 2021-12-25 17:22:56 -04:00
parent e43bad4883
commit 25e0f5e592
2 changed files with 2 additions and 7 deletions

View file

@ -662,16 +662,12 @@ notmuch_database_create_with_config (const char *database_path,
err = mkdir (notmuch_path, 0755);
if (err) {
if (errno == EEXIST) {
status = NOTMUCH_STATUS_DATABASE_EXISTS;
talloc_free (notmuch);
notmuch = NULL;
} else {
if (errno != EEXIST) {
IGNORE_RESULT (asprintf (&message, "Error: Cannot create directory %s: %s.\n",
notmuch_path, strerror (errno)));
status = NOTMUCH_STATUS_FILE_ERROR;
goto DONE;
}
goto DONE;
}
}

View file

@ -322,7 +322,6 @@ EOF
*)
backup_database
test_begin_subtest ".notmuch without xapian/ handled gracefully ($config)"
test_subtest_known_broken
rm -r $XAPIAN_PATH
test_expect_success "notmuch new"
restore_database