From: Justus Winter <4winter@informatik.uni-hamburg.de> Date: Sun, 22 Apr 2012 12:07:54 +0000 (+0200) Subject: Use notmuch_database_destroy instead of notmuch_database_close X-Git-Tag: 0.13_rc1~61 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=37e293eb5f2b95d02fddc22a408ea16d224246ce 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> --- 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; }