aboutsummaryrefslogtreecommitdiff
path: root/src/DatabaseGlue.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-08-08 08:36:14 +0200
committerMax Kellermann <max@duempel.org>2012-08-08 09:28:13 +0200
commitb46bb611b331869734c687394b8d0a516052798e (patch)
tree7c181f67f27b1a7619cee718accdf39d81426ea3 /src/DatabaseGlue.cxx
parentaa55d759f555782dc9cf2f9f6d489502310490a6 (diff)
DatabaseGlue: pass block to db_init()
Let the caller take care for legacy conversion.
Diffstat (limited to 'src/DatabaseGlue.cxx')
-rw-r--r--src/DatabaseGlue.cxx11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/DatabaseGlue.cxx b/src/DatabaseGlue.cxx
index a0246253..370a264a 100644
--- a/src/DatabaseGlue.cxx
+++ b/src/DatabaseGlue.cxx
@@ -51,21 +51,12 @@ static Database *db;
static bool db_is_open;
bool
-db_init(const struct config_param *path, GError **error_r)
+db_init(const struct config_param *param, GError **error_r)
{
assert(db == NULL);
assert(!db_is_open);
- if (path == NULL)
- return true;
-
- struct config_param *param = config_new_param("database", path->line);
- config_add_block_param(param, "path", path->value, path->line);
-
db = simple_db_plugin.create(param, error_r);
-
- config_param_free(param);
-
return db != NULL;
}