summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-02-14 17:11:38 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2019-02-14 17:11:38 +0100
commit985d68e6dd13c526641f9c7b6785bff053564b0b (patch)
treee5dfd9db106c47b02cd5995fe5083431b7805161
parenta98825675b37988c059576b5bfd98bac173bdc25 (diff)
downloadexchange-985d68e6dd13c526641f9c7b6785bff053564b0b.tar.gz
exchange-985d68e6dd13c526641f9c7b6785bff053564b0b.tar.bz2
exchange-985d68e6dd13c526641f9c7b6785bff053564b0b.zip
fix test 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..8f2903d4a 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_NO);
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_NO));
unload:
TALER_AUDITORDB_plugin_unload (plugin);
plugin = NULL;