aboutsummaryrefslogtreecommitdiff
path: root/src/util/plugin.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-07-30 12:25:07 +0200
committerChristian Grothoff <christian@grothoff.org>2021-07-30 12:25:07 +0200
commite84ea6f9f1718298486a088832c87479bd6e9572 (patch)
tree1d1325c53a0731532a418f790ff033392fd68bdb /src/util/plugin.c
parent7f3311b8755f144fea8ab56fa21816e7f92c5820 (diff)
downloadgnunet-e84ea6f9f1718298486a088832c87479bd6e9572.tar.gz
gnunet-e84ea6f9f1718298486a088832c87479bd6e9572.zip
-rename plugin, otherwise plugin_test fails due to conflicting other plugin with the same prefix name
Diffstat (limited to 'src/util/plugin.c')
-rw-r--r--src/util/plugin.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/util/plugin.c b/src/util/plugin.c
index feb661f24..39874a588 100644
--- a/src/util/plugin.c
+++ b/src/util/plugin.c
@@ -447,8 +447,12 @@ GNUNET_PLUGIN_load_all_in_context (const struct GNUNET_OS_ProjectData *ctx,
447 void *cb_cls) 447 void *cb_cls)
448{ 448{
449 const struct GNUNET_OS_ProjectData *cpd = GNUNET_OS_project_data_get (); 449 const struct GNUNET_OS_ProjectData *cpd = GNUNET_OS_project_data_get ();
450
450 GNUNET_OS_init (ctx); 451 GNUNET_OS_init (ctx);
451 GNUNET_PLUGIN_load_all (basename, arg, cb, cb_cls); 452 GNUNET_PLUGIN_load_all (basename,
453 arg,
454 cb,
455 cb_cls);
452 GNUNET_OS_init (cpd); 456 GNUNET_OS_init (cpd);
453} 457}
454 458