From 4e5cc9a65ef3cdcf3b7128ae1037510385854162 Mon Sep 17 00:00:00 2001 From: deva Date: Tue, 17 Feb 2009 12:13:35 +0000 Subject: Oups... the dao = NULL should be set regardless of the value of WITHOUT_DB. --- server/src/database.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/database.cc b/server/src/database.cc index 6a25f93..5a03126 100644 --- a/server/src/database.cc +++ b/server/src/database.cc @@ -35,8 +35,8 @@ Database::Database(std::string _backend, std::string _host, std::string _port, std::string _user, std::string _passwd, std::string _dbname) { -#ifndef WITHOUT_DB dao = NULL; +#ifndef WITHOUT_DB if(_backend == "pgsql") { PRACRO_DEBUG(db, "construct(%s, %s, %s, %s, %s)\n", _host.c_str(), _port.c_str(), _user.c_str(), _passwd.c_str(), _dbname.c_str()); dao = new PracroDAOPgsql(_host, _port, _user, _passwd, _dbname); -- cgit v1.2.3