summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-02-14 21:22:29 +0100
committerChristian Grothoff <christian@grothoff.org>2019-02-14 21:22:29 +0100
commit5bd7ede31f39d2f1e60c90d3b99da502cd757d3e (patch)
treeccd88ff6bb4cc969deb3b118553973824031d98d
parenta98825675b37988c059576b5bfd98bac173bdc25 (diff)
downloadexchange-5bd7ede31f39d2f1e60c90d3b99da502cd757d3e.tar.gz
exchange-5bd7ede31f39d2f1e60c90d3b99da502cd757d3e.tar.bz2
exchange-5bd7ede31f39d2f1e60c90d3b99da502cd757d3e.zip
fix ftbfs
-rw-r--r--src/auditordb/test_auditordb.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/auditordb/test_auditordb.c b/src/auditordb/test_auditordb.c
index d9fbf6fe7..f42892902 100644
--- a/src/auditordb/test_auditordb.c
+++ b/src/auditordb/test_auditordb.c
@@ -105,7 +105,8 @@ run (void *cls)
return;
}
- (void) plugin->drop_tables (plugin->cls);
+ (void) plugin->drop_tables (plugin->cls,
+ GNUNET_YES);
if (GNUNET_OK !=
plugin->create_tables (plugin->cls))
{
@@ -767,7 +768,8 @@ drop:
session));
}
GNUNET_break (GNUNET_OK ==
- plugin->drop_tables (plugin->cls));
+ plugin->drop_tables (plugin->cls,
+ GNUNET_YES));
unload:
TALER_AUDITORDB_plugin_unload (plugin);
plugin = NULL;