aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/test_mq_client.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/util/test_mq_client.c b/src/util/test_mq_client.c
index 88e072c2b..18cd8a948 100644
--- a/src/util/test_mq_client.c
+++ b/src/util/test_mq_client.c
@@ -49,13 +49,8 @@ recv_cb (void *cls, struct GNUNET_SERVER_Client *argclient,
49 const struct GNUNET_MessageHeader *message) 49 const struct GNUNET_MessageHeader *message)
50{ 50{
51 received++; 51 received++;
52
53 printf ("received\n");
54
55
56 if ((received == 2) && (GNUNET_YES == notify)) 52 if ((received == 2) && (GNUNET_YES == notify))
57 { 53 {
58 printf ("done\n");
59 GNUNET_SERVER_receive_done (argclient, GNUNET_NO); 54 GNUNET_SERVER_receive_done (argclient, GNUNET_NO);
60 return; 55 return;
61 } 56 }
@@ -103,7 +98,6 @@ void send_cb (void *cls)
103{ 98{
104 /* the notify should only be called once */ 99 /* the notify should only be called once */
105 GNUNET_assert (GNUNET_NO == notify); 100 GNUNET_assert (GNUNET_NO == notify);
106 printf ("notify sent\n");
107 notify = GNUNET_YES; 101 notify = GNUNET_YES;
108} 102}
109 103