diff options
| author | David Bremner <david@tethera.net> | 2016-01-09 21:34:21 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2016-03-29 22:59:35 -0300 |
| commit | ccf0db161590e2aac7db0e049547c347ab4db528 (patch) | |
| tree | 769014c8f205ccefb21500d92de3694b11eb1414 /status.c | |
| parent | 9bbc54bd406fc218a5463efe9a127aee461fb47b (diff) | |
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
Diffstat (limited to 'status.c')
| -rw-r--r-- | status.c | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -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; +} |
