From 103e508f3b1c623f687c092790ea0f73d92e65f3 Mon Sep 17 00:00:00 2001 From: "Romain DEP." Date: Thu, 21 Sep 2017 08:38:04 +0200 Subject: compat: revert to using sqlite's close() function for compat with older distros. close_v2(), in use before this commit, was introduced as part of sqlite 3.7.14 (2012-09-03), and is as such incompatible with debian wheezy (3.7.13) and centos6 (3.6.20). FTR, Wheezy will be supported until May 2018, and centos6, until November 2020. --- src/database/database.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/database/database.cpp b/src/database/database.cpp index a2b88e2..8afe6f1 100644 --- a/src/database/database.cpp +++ b/src/database/database.cpp @@ -35,7 +35,7 @@ void Database::open(const std::string& filename) if (res != SQLITE_OK) { log_error("Failed to open database file ", filename, ": ", sqlite3_errmsg(new_db)); - sqlite3_close_v2(new_db); + sqlite3_close(new_db); throw std::runtime_error(""); } Database::db = new_db; @@ -238,7 +238,7 @@ std::vector Database::get_full_roster() void Database::close() { - sqlite3_close_v2(Database::db); + sqlite3_close(Database::db); Database::db = nullptr; } -- cgit v1.2.3