Add a third default.
[oweals/gnunet.git] / src / util / test_mq_client.c
index 18cd8a9485c8634156e87521ce297e637dfa93dc..1c1bcee864a54e3d09e93eceb9f9a220a92e348e 100644 (file)
@@ -23,7 +23,6 @@
  * @brief tests for mq with connection client
  */
 #include "platform.h"
-#include "gnunet_common.h"
 #include "gnunet_util_lib.h"
 
 #define PORT 23336
@@ -49,7 +48,7 @@ recv_cb (void *cls, struct GNUNET_SERVER_Client *argclient,
          const struct GNUNET_MessageHeader *message)
 {
   received++;
-  if ((received == 2) && (GNUNET_YES == notify))
+  if (received == 2)
   {
     GNUNET_SERVER_receive_done (argclient, GNUNET_NO);
     return;
@@ -94,14 +93,18 @@ static struct GNUNET_SERVER_MessageHandler handlers[] = {
   {NULL, NULL, 0, 0}
 };
 
-void send_cb (void *cls)
+
+static void
+send_cb (void *cls)
 {
   /* the notify should only be called once */
   GNUNET_assert (GNUNET_NO == notify);
   notify = GNUNET_YES;
 }
 
-void test_mq (struct GNUNET_CLIENT_Connection *client)
+
+static void
+test_mq (struct GNUNET_CLIENT_Connection *client)
 {
   struct GNUNET_MQ_Handle *mq;
   struct GNUNET_MQ_Envelope *mqm;
@@ -165,6 +168,7 @@ main (int argc, char *argv[])
                     NULL);
   ok = 1;
   GNUNET_SCHEDULER_run (&task, NULL);
+  GNUNET_assert (GNUNET_YES == notify);
   return ok;
 }