mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 10:28:09 +01:00
CLI: add print_status_database
This could probably be used at quite a few places in the existing code, but in the immediate future I plan to use in some new code in notmuch-dump
This commit is contained in:
parent
9bbc54bd40
commit
ccf0db1615
2 changed files with 22 additions and 0 deletions
|
@ -462,6 +462,11 @@ print_status_query (const char *loc,
|
|||
const notmuch_query_t *query,
|
||||
notmuch_status_t status);
|
||||
|
||||
notmuch_status_t
|
||||
print_status_database (const char *loc,
|
||||
const notmuch_database_t *database,
|
||||
notmuch_status_t status);
|
||||
|
||||
#include "command-line-arguments.h"
|
||||
|
||||
extern char *notmuch_requested_db_uuid;
|
||||
|
|
17
status.c
17
status.c
|
@ -19,3 +19,20 @@ print_status_query (const char *loc,
|
|||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
notmuch_status_t
|
||||
print_status_database (const char *loc,
|
||||
const notmuch_database_t *notmuch,
|
||||
notmuch_status_t status)
|
||||
{
|
||||
if (status) {
|
||||
const char *msg;
|
||||
|
||||
fprintf (stderr, "%s: %s\n", loc,
|
||||
notmuch_status_to_string (status));
|
||||
msg = notmuch_database_status_string (notmuch);
|
||||
if (msg)
|
||||
fputs (msg, stderr);
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue