aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2012-03-14 15:36:52 +0000
committerMartin Schanzenbach <mschanzenbach@posteo.de>2012-03-14 15:36:52 +0000
commit90b3fa120fe253da2c391e8e56c703d46a118625 (patch)
tree852a6a35e33e58dc36f1aa07e899b0245f8cc67a /src
parent9346e2665891434aa44811ab092549de5d102e74 (diff)
downloadgnunet-90b3fa120fe253da2c391e8e56c703d46a118625.tar.gz
gnunet-90b3fa120fe253da2c391e8e56c703d46a118625.zip
-t'works
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/**