mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-28 13:44:12 +01:00
cli/new: add better error messages for FILE_ERROR
The code in add_file seems to assume that NOTMUCH_STATUS_FILE_ERROR is never returned from add_message. This turns out to be false (although it seems to only happen in certain fairly rare race conditions).
This commit is contained in:
parent
ccf0db1615
commit
6e6bafed0f
1 changed files with 4 additions and 0 deletions
|
@ -281,6 +281,10 @@ add_file (notmuch_database_t *notmuch, const char *filename,
|
||||||
fprintf (stderr, "Note: Ignoring non-mail file: %s\n", filename);
|
fprintf (stderr, "Note: Ignoring non-mail file: %s\n", filename);
|
||||||
break;
|
break;
|
||||||
/* Fatal issues. Don't process anymore. */
|
/* Fatal issues. Don't process anymore. */
|
||||||
|
case NOTMUCH_STATUS_FILE_ERROR:
|
||||||
|
fprintf (stderr, "Unexpected error with file %s\n", filename);
|
||||||
|
(void) print_status_database ("add_file", notmuch, status);
|
||||||
|
goto DONE;
|
||||||
case NOTMUCH_STATUS_READ_ONLY_DATABASE:
|
case NOTMUCH_STATUS_READ_ONLY_DATABASE:
|
||||||
case NOTMUCH_STATUS_XAPIAN_EXCEPTION:
|
case NOTMUCH_STATUS_XAPIAN_EXCEPTION:
|
||||||
case NOTMUCH_STATUS_OUT_OF_MEMORY:
|
case NOTMUCH_STATUS_OUT_OF_MEMORY:
|
||||||
|
|
Loading…
Reference in a new issue