diff options
author | Romain DEP. <rom1dep@gmail.com> | 2017-09-21 08:38:04 +0200 |
---|---|---|
committer | Romain DEP. <rom1dep@gmail.com> | 2017-09-21 08:38:04 +0200 |
commit | 103e508f3b1c623f687c092790ea0f73d92e65f3 (patch) | |
tree | 2e3589e7cf96210fc78097531794fa085d33149b /src/database | |
parent | c1984733c4c50d7a4a7d5ae767ce87bcb3bea1c7 (diff) | |
download | biboumi-103e508f3b1c623f687c092790ea0f73d92e65f3.tar.gz biboumi-103e508f3b1c623f687c092790ea0f73d92e65f3.tar.bz2 biboumi-103e508f3b1c623f687c092790ea0f73d92e65f3.tar.xz biboumi-103e508f3b1c623f687c092790ea0f73d92e65f3.zip |
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.
Diffstat (limited to 'src/database')
-rw-r--r-- | src/database/database.cpp | 4 |
1 files 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::RosterItem> Database::get_full_roster() void Database::close() { - sqlite3_close_v2(Database::db); + sqlite3_close(Database::db); Database::db = nullptr; } |