summaryrefslogtreecommitdiff
path: root/src/wire-plugins/test_ebics_wireformat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wire-plugins/test_ebics_wireformat.c')
-rw-r--r--src/wire-plugins/test_ebics_wireformat.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/wire-plugins/test_ebics_wireformat.c b/src/wire-plugins/test_ebics_wireformat.c
index 46989d503..0d6b76ad0 100644
--- a/src/wire-plugins/test_ebics_wireformat.c
+++ b/src/wire-plugins/test_ebics_wireformat.c
@@ -51,7 +51,7 @@ main (int argc,
struct GNUNET_CONFIGURATION_Handle *cfg;
struct TALER_WIRE_Plugin *plugin;
- GNUNET_log_setup ("test-sepa-wireformats",
+ GNUNET_log_setup ("test-ebics-wireformats",
"WARNING",
NULL);
cfg = GNUNET_CONFIGURATION_create ();
@@ -61,7 +61,12 @@ main (int argc,
"EUR");
plugin = TALER_WIRE_plugin_load (cfg,
"ebics");
- GNUNET_assert (NULL != plugin);
+ if (NULL == plugin)
+ {
+ TALER_LOG_ERROR ("Could not load the ebics plugin\n");
+ return 77;
+ }
+
GNUNET_assert (TALER_EC_NONE !=
plugin->wire_validate (plugin->cls,
unsupported_wire_str));