aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib
diff options
context:
space:
mode:
authorGravatar Justus Winter <4winter@informatik.uni-hamburg.de>2012-04-22 14:07:54 +0200
committerGravatar David Bremner <bremner@debian.org>2012-04-28 09:29:12 -0300
commit37e293eb5f2b95d02fddc22a408ea16d224246ce (patch)
tree846899bdfc98020f8ee6524f21eedb283a3270be /contrib
parent6f7469f54744656f90ce215f365d5731e16acd3c (diff)
Use notmuch_database_destroy instead of notmuch_database_close
Adapt notmuch-deliver to the notmuch_database_close split. Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
Diffstat (limited to 'contrib')
-rw-r--r--contrib/notmuch-deliver/src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/notmuch-deliver/src/main.c b/contrib/notmuch-deliver/src/main.c
index 6f32f73d..37d2919a 100644
--- a/contrib/notmuch-deliver/src/main.c
+++ b/contrib/notmuch-deliver/src/main.c
@@ -455,7 +455,7 @@ main(int argc, char **argv)
g_strfreev(opt_rtags);
g_free(mail);
- notmuch_database_close(db);
+ notmuch_database_destroy(db);
return 0;
}