mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 10:28:09 +01:00
39c54df26d
No attention to formatting here, initially just focus on getting the relevant strings out of the library.
21 lines
453 B
C
21 lines
453 B
C
#include "notmuch-client.h"
|
|
|
|
notmuch_status_t
|
|
print_status_query (const char *loc,
|
|
const notmuch_query_t *query,
|
|
notmuch_status_t status)
|
|
{
|
|
if (status) {
|
|
const char *msg;
|
|
notmuch_database_t *notmuch;
|
|
|
|
fprintf (stderr, "%s: %s\n", loc,
|
|
notmuch_status_to_string (status));
|
|
|
|
notmuch = notmuch_query_get_database (query);
|
|
msg = notmuch_database_status_string (notmuch);
|
|
if (msg)
|
|
fputs (msg, stderr);
|
|
}
|
|
return status;
|
|
}
|