aboutsummaryrefslogtreecommitdiff
path: root/src/namestore
diff options
context:
space:
mode:
authorDavid Barksdale <amatus.amongus@gmail.com>2013-11-10 23:38:21 +0000
committerDavid Barksdale <amatus.amongus@gmail.com>2013-11-10 23:38:21 +0000
commit90154d43ea47d82637b615f35d0c8462f4007c3d (patch)
tree39d7db420ee9bc6eb252c2e6d937f6d9b584ff19 /src/namestore
parent172ab07eeb1215cc9d22dabc589f7529ac2d59ea (diff)
downloadgnunet-90154d43ea47d82637b615f35d0c8462f4007c3d.tar.gz
gnunet-90154d43ea47d82637b615f35d0c8462f4007c3d.zip
Fix incompatability with musl libc.
Diffstat (limited to 'src/namestore')
-rw-r--r--src/namestore/gnunet-service-namestore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/namestore/gnunet-service-namestore.c b/src/namestore/gnunet-service-namestore.c
index f793c50d7..ad8c9e798 100644
--- a/src/namestore/gnunet-service-namestore.c
+++ b/src/namestore/gnunet-service-namestore.c
@@ -298,7 +298,7 @@ cleanup_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
298 GNUNET_free (no); 298 GNUNET_free (no);
299 } 299 }
300 GNUNET_CONTAINER_DLL_remove (client_head, client_tail, nc); 300 GNUNET_CONTAINER_DLL_remove (client_head, client_tail, nc);
301 GNUNET_SERVER_client_set_user_context (nc->client, NULL); 301 GNUNET_SERVER_client_set_user_context (nc->client, (void *)NULL);
302 GNUNET_free (nc); 302 GNUNET_free (nc);
303 } 303 }
304 GNUNET_break (NULL == GNUNET_PLUGIN_unload (db_lib_name, GSN_database)); 304 GNUNET_break (NULL == GNUNET_PLUGIN_unload (db_lib_name, GSN_database));