From: Christian Grothoff Date: Thu, 7 Jun 2018 14:42:23 +0000 (+0200) Subject: add -z option to gnunet-namestore-fcfsd X-Git-Tag: v0.11.0~319^2~25^2~8 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=20eaa2aeedcc804a14f5b5265321ad41516b11b9;p=oweals%2Fgnunet.git add -z option to gnunet-namestore-fcfsd --- diff --git a/src/namestore/gnunet-namestore-fcfsd.c b/src/namestore/gnunet-namestore-fcfsd.c index e0c04e6f1..3e3e598e7 100644 --- a/src/namestore/gnunet-namestore-fcfsd.c +++ b/src/namestore/gnunet-namestore-fcfsd.c @@ -1011,12 +1011,16 @@ identity_cb (void *cls, (void) cls; (void) ctx; - (void) name; - id_op = NULL; + if (NULL == name) + return; + if (0 != strcmp (name, + zone)) + return; if (NULL == ego) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("No ego configured for `fcfsd` subsystem\n")); + GNUNET_SCHEDULER_shutdown (); return; } fcfs_zone_pkey = *GNUNET_IDENTITY_ego_get_private_key (ego); @@ -1085,17 +1089,14 @@ run (void *cls, return; } identity = GNUNET_IDENTITY_connect (cfg, - NULL, NULL); + &identity_cb, + NULL); if (NULL == identity) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Failed to connect to identity\n")); return; } - id_op = GNUNET_IDENTITY_get (identity, - zone, - &identity_cb, - NULL); GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL); }