aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gns/gnunet-gns.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gns/gnunet-gns.c b/src/gns/gnunet-gns.c
index b689cab18..f2600b6a8 100644
--- a/src/gns/gnunet-gns.c
+++ b/src/gns/gnunet-gns.c
@@ -81,6 +81,7 @@ static void
81process_shorten_result(void* cls, const char* nshort) 81process_shorten_result(void* cls, const char* nshort)
82{ 82{
83 printf("%s shortened to %s\n", (char*) cls, nshort); 83 printf("%s shortened to %s\n", (char*) cls, nshort);
84 GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
84} 85}
85 86
86static void 87static void
@@ -118,6 +119,7 @@ static void
118process_auth_result(void* cls, const char* auth) 119process_auth_result(void* cls, const char* auth)
119{ 120{
120 printf ("%s\n", auth); 121 printf ("%s\n", auth);
122 GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
121} 123}
122 124
123/** 125/**