-improve UDP logging
[oweals/gnunet.git] / src / scalarproduct / gnunet-service-scalarproduct_alice.c
index a003d6aab68fbbac6021e313d85e43bd6058f501..0f6b7ca32fd99fdbfde1ea6315bb69600a1596d4 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet.
-     (C) 2013, 2014 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2013, 2014 Christian Grothoff (and other contributing authors)
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
@@ -261,7 +261,7 @@ destroy_service_session (struct AliceServiceSession *s)
   if (NULL != s->client)
   {
     GNUNET_SERVER_client_set_user_context (s->client,
-                                           (void *)NULL);
+                                           NULL);
     GNUNET_SERVER_client_disconnect (s->client);
     s->client = NULL;
   }
@@ -1356,7 +1356,7 @@ handle_client_disconnect (void *cls,
     return;
   s->client = NULL;
   GNUNET_SERVER_client_set_user_context (client,
-                                         (void *)NULL);
+                                         NULL);
   destroy_service_session (s);
 }