From 17f98215f27d61d966cb1d7a11197e102b785d16 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 8 Mar 2018 14:24:22 +0100 Subject: [PATCH] fix output of hostname by gnunet-gns --- src/gns/gnunet-gns.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gns/gnunet-gns.c b/src/gns/gnunet-gns.c index 32cfba5bb..771a7dcc8 100644 --- a/src/gns/gnunet-gns.c +++ b/src/gns/gnunet-gns.c @@ -180,7 +180,7 @@ run (void *cls, (void) cls; (void) args; (void) cfgfile; - + cfg = c; gns = GNUNET_GNS_connect (cfg); if (NULL == gns) @@ -190,7 +190,7 @@ run (void *cls, global_ret = 2; return; } - + GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL); @@ -209,13 +209,13 @@ run (void *cls, rtype, local_options, &process_lookup_result, - NULL); + lookup_name); if (NULL == lr) { global_ret = 2; GNUNET_SCHEDULER_shutdown (); return; - } + } } -- 2.25.1