mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 04:18:08 +01:00
lib: add missing status strings
This commit is contained in:
parent
4a8d67e357
commit
a6a580e616
1 changed files with 8 additions and 0 deletions
|
@ -293,12 +293,20 @@ notmuch_status_to_string (notmuch_status_t status)
|
||||||
return "Operation requires a database upgrade";
|
return "Operation requires a database upgrade";
|
||||||
case NOTMUCH_STATUS_PATH_ERROR:
|
case NOTMUCH_STATUS_PATH_ERROR:
|
||||||
return "Path supplied is illegal for this function";
|
return "Path supplied is illegal for this function";
|
||||||
|
case NOTMUCH_STATUS_IGNORED:
|
||||||
|
return "Argument was ignored";
|
||||||
|
case NOTMUCH_STATUS_ILLEGAL_ARGUMENT:
|
||||||
|
return "Illegal argument for function";
|
||||||
case NOTMUCH_STATUS_MALFORMED_CRYPTO_PROTOCOL:
|
case NOTMUCH_STATUS_MALFORMED_CRYPTO_PROTOCOL:
|
||||||
return "Crypto protocol missing, malformed, or unintelligible";
|
return "Crypto protocol missing, malformed, or unintelligible";
|
||||||
case NOTMUCH_STATUS_FAILED_CRYPTO_CONTEXT_CREATION:
|
case NOTMUCH_STATUS_FAILED_CRYPTO_CONTEXT_CREATION:
|
||||||
return "Crypto engine initialization failure";
|
return "Crypto engine initialization failure";
|
||||||
case NOTMUCH_STATUS_UNKNOWN_CRYPTO_PROTOCOL:
|
case NOTMUCH_STATUS_UNKNOWN_CRYPTO_PROTOCOL:
|
||||||
return "Unknown crypto protocol";
|
return "Unknown crypto protocol";
|
||||||
|
case NOTMUCH_STATUS_NO_CONFIG:
|
||||||
|
return "No configuration file found";
|
||||||
|
case NOTMUCH_STATUS_DATABASE_EXISTS:
|
||||||
|
return "Database exists, not recreated";
|
||||||
default:
|
default:
|
||||||
case NOTMUCH_STATUS_LAST_STATUS:
|
case NOTMUCH_STATUS_LAST_STATUS:
|
||||||
return "Unknown error status value";
|
return "Unknown error status value";
|
||||||
|
|
Loading…
Reference in a new issue