aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-08-11 21:55:09 +0000
committerChristian Grothoff <christian@grothoff.org>2013-08-11 21:55:09 +0000
commita2e8a59397b12df7e95af6fa888383aa526eb9bc (patch)
treed2aed7d052d8e9e67e7b6c885b5fd682484da761 /src/util
parent877ffff76b906b195be4bb1e1d3bfd841aab76ac (diff)
downloadgnunet-a2e8a59397b12df7e95af6fa888383aa526eb9bc.tar.gz
gnunet-a2e8a59397b12df7e95af6fa888383aa526eb9bc.zip
-be silent
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