From 85b8675e7a11a81bda4b4328e19e433768048911 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 19 Feb 2014 23:17:21 +0100 Subject: db/Interface: add attribute "plugin" The new method IsPlugin() replaces the "is_simple" flag. --- src/db/Configured.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/db/Configured.cxx') diff --git a/src/db/Configured.cxx b/src/db/Configured.cxx index edd3159f9..14471402a 100644 --- a/src/db/Configured.cxx +++ b/src/db/Configured.cxx @@ -28,7 +28,7 @@ Database * CreateConfiguredDatabase(EventLoop &loop, DatabaseListener &listener, - bool &is_simple_r, Error &error) + Error &error) { const struct config_param *param = config_get_param(CONF_DATABASE); const struct config_param *path = config_get_param(CONF_DB_FILE); @@ -53,7 +53,7 @@ CreateConfiguredDatabase(EventLoop &loop, DatabaseListener &listener, return nullptr; Database *db = DatabaseGlobalInit(loop, listener, *param, - is_simple_r, error); + error); delete allocated; return db; } -- cgit v1.2.3