aboutsummaryrefslogtreecommitdiff
path: root/src/peerstore/test_plugin_peerstore.c
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-09-06 22:46:29 +0000
committerng0 <ng0@n0.is>2019-09-06 22:46:29 +0000
commit6e599264ad13e8fc105493d74d7c11d46f8739ed (patch)
tree169bef1ecbade5a659831fb169f3ae6943af127f /src/peerstore/test_plugin_peerstore.c
parent4f13bc15113021ebf71d5d81e99bc29f8a07fc9c (diff)
downloadgnunet-6e599264ad13e8fc105493d74d7c11d46f8739ed.tar.gz
gnunet-6e599264ad13e8fc105493d74d7c11d46f8739ed.zip
first step to remove plibc
Diffstat (limited to 'src/peerstore/test_plugin_peerstore.c')
-rw-r--r--src/peerstore/test_plugin_peerstore.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/peerstore/test_plugin_peerstore.c b/src/peerstore/test_plugin_peerstore.c
index d6be5f06d..24b5723ff 100644
--- a/src/peerstore/test_plugin_peerstore.c
+++ b/src/peerstore/test_plugin_peerstore.c
@@ -83,7 +83,7 @@ load_plugin (const struct GNUNET_CONFIGURATION_Handle *cfg)
83 if (NULL == (ret = GNUNET_PLUGIN_load (libname, 83 if (NULL == (ret = GNUNET_PLUGIN_load (libname,
84 (void*) cfg))) 84 (void*) cfg)))
85 { 85 {
86 FPRINTF (stderr, 86 fprintf (stderr,
87 "Failed to load plugin `%s'!\n", 87 "Failed to load plugin `%s'!\n",
88 plugin_name); 88 plugin_name);
89 GNUNET_free (libname); 89 GNUNET_free (libname);
@@ -174,7 +174,7 @@ run (void *cls,
174 psp = load_plugin (cfg); 174 psp = load_plugin (cfg);
175 if (NULL == psp) 175 if (NULL == psp)
176 { 176 {
177 FPRINTF (stderr, 177 fprintf (stderr,
178 "%s", 178 "%s",
179 "Failed to initialize peerstore. Database likely not setup, skipping test.\n"); 179 "Failed to initialize peerstore. Database likely not setup, skipping test.\n");
180 return; 180 return;
@@ -215,7 +215,7 @@ main (int argc, char *argv[])
215 &run, 215 &run,
216 NULL); 216 NULL);
217 if (ok != 0) 217 if (ok != 0)
218 FPRINTF (stderr, 218 fprintf (stderr,
219 "Missed some testcases: %d\n", 219 "Missed some testcases: %d\n",
220 ok); 220 ok);
221 return ok; 221 return ok;