mirror of
https://github.com/minetest/minetestmapper.git
synced 2024-11-21 23:13:53 +01:00
Fix postgres build failure, closes #57
This commit is contained in:
parent
0a91fe6cbd
commit
48d9e0bb42
@ -14,7 +14,7 @@ DBPostgreSQL::DBPostgreSQL(const std::string &mapdir)
|
|||||||
std::ifstream ifs((mapdir + "/world.mt").c_str());
|
std::ifstream ifs((mapdir + "/world.mt").c_str());
|
||||||
if(!ifs.good())
|
if(!ifs.good())
|
||||||
throw std::runtime_error("Failed to read world.mt");
|
throw std::runtime_error("Failed to read world.mt");
|
||||||
std::string const connect_string = get_setting("pgsql_connection", ifs);
|
std::string connect_string = read_setting("pgsql_connection", ifs);
|
||||||
ifs.close();
|
ifs.close();
|
||||||
db = PQconnectdb(connect_string.c_str());
|
db = PQconnectdb(connect_string.c_str());
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user