tolerate additional IPv4 address now available for gnunet.org
[oweals/gnunet.git] / src / util / test_strings_to_data.c
index 7397735583e7dfb02dc8774597a26804b5b22bc2..f7d20441f191253e2956d63848c58a823fde87d0 100644 (file)
@@ -1,30 +1,28 @@
 /*
      This file is part of GNUnet.
-     (C) 2009 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2009 GNUnet e.V.
 
-     GNUnet is free software; you can redistribute it and/or modify
-     it under the terms of the GNU General Public License as published
-     by the Free Software Foundation; either version 3, or (at your
-     option) any later version.
+     GNUnet is free software: you can redistribute it and/or modify it
+     under the terms of the GNU Affero General Public License as published
+     by the Free Software Foundation, either version 3 of the License,
+     or (at your option) any later version.
 
      GNUnet is distributed in the hope that it will be useful, but
      WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
+     Affero General Public License for more details.
+    
+     You should have received a copy of the GNU Affero General Public License
+     along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-     You should have received a copy of the GNU General Public License
-     along with GNUnet; see the file COPYING.  If not, write to the
-     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-     Boston, MA 02111-1307, USA.
+     SPDX-License-Identifier: AGPL3.0-or-later
 */
 /**
  * @file util/test_strings_to_data.c
  * @brief testcase for strings.c
  */
 #include "platform.h"
-#include "gnunet_common.h"
-#include "gnunet_crypto_lib.h"
-#include "gnunet_strings_lib.h"
+#include "gnunet_util_lib.h"
 
 
 int
@@ -36,7 +34,7 @@ main (int argc, char *argv[])
   char dst[128];
   unsigned int i;
   int ret = 0;
-  
+
   GNUNET_log_setup ("util", "DEBUG", NULL);
   for (i=0;i<sizeof(src);i++)
   {
@@ -44,8 +42,9 @@ main (int argc, char *argv[])
     memset (dst, i+1, sizeof (dst));
 
     end = GNUNET_STRINGS_data_to_string (&src, i, buf, sizeof (buf));
+    GNUNET_assert (NULL != end);
     end[0] = '\0';
-    if (GNUNET_OK != 
+    if (GNUNET_OK !=
        GNUNET_STRINGS_string_to_data (buf, strlen (buf), dst, i))
     {
       fprintf (stderr, "%u failed decode (%u bytes)\n", i, (unsigned int) strlen (buf));