aboutsummaryrefslogtreecommitdiff
path: root/src/datastore/plugin_datastore_sqlite.c
diff options
context:
space:
mode:
authorgrothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96>2009-10-21 12:46:53 +0000
committergrothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96>2009-10-21 12:46:53 +0000
commit0eadc4bc6908e7152e6d979ab13dd5347ad812d7 (patch)
treeaf4e2e4e4f747e16bc22b43df68020b055e337da /src/datastore/plugin_datastore_sqlite.c
parent9fc7b6937da5b5a495601952636fbb5e02e84e88 (diff)
fix
git-svn-id: https://gnunet.org/svn/gnunet@9236 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/datastore/plugin_datastore_sqlite.c')
-rw-r--r--src/datastore/plugin_datastore_sqlite.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/datastore/plugin_datastore_sqlite.c b/src/datastore/plugin_datastore_sqlite.c
index b5d5990c68..3f05280a84 100644
--- a/src/datastore/plugin_datastore_sqlite.c
+++ b/src/datastore/plugin_datastore_sqlite.c
@@ -1580,7 +1580,7 @@ libgnunet_plugin_datastore_sqlite_init (void *cls)
return NULL; /* can only initialize once! */
memset (&plugin, 0, sizeof(struct Plugin));
plugin.env = env;
- GNUNET_ARM_start_services (env->cfg, env->sched, "statistics");
+ GNUNET_ARM_start_services (env->cfg, env->sched, "statistics", NULL);
plugin.statistics = GNUNET_STATISTICS_create (env->sched,
"sqlite",
env->cfg);
@@ -1595,7 +1595,7 @@ libgnunet_plugin_datastore_sqlite_init (void *cls)
database_setup (env->cfg, &plugin))
{
database_shutdown (&plugin);
- GNUNET_ARM_stop_services (env->cfg, env->sched, "statistics");
+ GNUNET_ARM_stop_services (env->cfg, env->sched, "statistics", NULL);
return NULL;
}
api = GNUNET_malloc (sizeof (struct GNUNET_DATASTORE_PluginFunctions));
@@ -1637,7 +1637,7 @@ libgnunet_plugin_datastore_sqlite_done (void *cls)
plugin->env = NULL;
plugin->payload = 0;
GNUNET_STATISTICS_destroy (plugin->statistics);
- GNUNET_ARM_stop_services (plugin->env->cfg, plugin->env->sched, "statistics");
+ GNUNET_ARM_stop_services (plugin->env->cfg, plugin->env->sched, "statistics", NULL);
GNUNET_free (api);
if (fn != NULL)
{