aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/database-private.h
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-22 03:54:20 +0100
committerGravatar Carl Worth <cworth@cworth.org>2009-11-22 03:54:20 +0100
commite2341cbc09b503f996fd46b68f9d96ae6004025b (patch)
tree042bd073a0e34344025cf376453350793326599b /lib/database-private.h
parent717279fbcf7e057957c7c6726cd4930393cd5fdf (diff)
Catch and optionally print about exception at database->flush.
If an earlier exception occurred, then it's not unexpected for the flush to fail as well. So in that case, we'll silently catch the exception. Otherwise, make some noise about things going wrong at the time of flush.
Diffstat (limited to 'lib/database-private.h')
-rw-r--r--lib/database-private.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/database-private.h b/lib/database-private.h
index 79c7916a..5f178f3e 100644
--- a/lib/database-private.h
+++ b/lib/database-private.h
@@ -26,6 +26,7 @@
#include <xapian.h>
struct _notmuch_database {
+ notmuch_bool_t exception_reported;
char *path;
notmuch_database_mode_t mode;
Xapian::Database *xapian_db;