fix
[oweals/gnunet.git] / src / util / test_container_bloomfilter.c
index 2e7fb2e280a812108e6bcaa01be23f9389471e87..04bb3488901c933ade417d2e589a051856b51eea 100644 (file)
@@ -4,7 +4,7 @@
 
      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 2, or (at your
+     by the Free Software Foundation; either version 3, or (at your
      option) any later version.
 
      GNUnet is distributed in the hope that it will be useful, but
@@ -42,8 +42,7 @@ nextHC (GNUNET_HashCode * hc)
 }
 
 static int
-add_iterator (void *cls,
-             GNUNET_HashCode * next)
+add_iterator (void *cls, GNUNET_HashCode * next)
 {
   int *ret = cls;
   GNUNET_HashCode pos;
@@ -86,12 +85,12 @@ main (int argc, char *argv[])
     {
       nextHC (&tmp);
       if (GNUNET_CONTAINER_bloomfilter_test (bf, &tmp) == GNUNET_YES)
-        ok1++;
+       ok1++;
     }
   if (ok1 != 200)
     {
-      printf ("Got %d elements out of"
-              "200 expected after insertion.\n", ok1);
+      printf ("Got %d elements out of" "200 expected after insertion.\n",
+             ok1);
       GNUNET_CONTAINER_bloomfilter_free (bf);
       return -1;
     }
@@ -115,14 +114,14 @@ main (int argc, char *argv[])
     {
       nextHC (&tmp);
       if (GNUNET_CONTAINER_bloomfilter_test (bf, &tmp) == GNUNET_YES)
-        ok1++;
+       ok1++;
       if (GNUNET_CONTAINER_bloomfilter_test (bfi, &tmp) == GNUNET_YES)
-        ok2++;
+       ok2++;
     }
   if (ok1 != 200)
     {
-      printf ("Got %d elements out of 200 "
-              "expected after reloading.\n", ok1);
+      printf ("Got %d elements out of 200 " "expected after reloading.\n",
+             ok1);
       GNUNET_CONTAINER_bloomfilter_free (bf);
       GNUNET_CONTAINER_bloomfilter_free (bfi);
       return -1;
@@ -131,7 +130,7 @@ main (int argc, char *argv[])
   if (ok2 != 200)
     {
       printf ("Got %d elements out of 200 "
-              "expected after initialization.\n", ok2);
+             "expected after initialization.\n", ok2);
       GNUNET_CONTAINER_bloomfilter_free (bf);
       GNUNET_CONTAINER_bloomfilter_free (bfi);
       return -1;
@@ -153,15 +152,15 @@ main (int argc, char *argv[])
     {
       nextHC (&tmp);
       if (GNUNET_CONTAINER_bloomfilter_test (bf, &tmp) == GNUNET_YES)
-        ok1++;
+       ok1++;
       if (GNUNET_CONTAINER_bloomfilter_test (bfi, &tmp) == GNUNET_YES)
-        ok2++;
+       ok2++;
     }
 
   if (ok1 != 100)
     {
       printf ("Expected 100 elements in loaded filter"
-              " after adding 200 and deleting 100, got %d\n", ok1);
+             " after adding 200 and deleting 100, got %d\n", ok1);
       GNUNET_CONTAINER_bloomfilter_free (bf);
       GNUNET_CONTAINER_bloomfilter_free (bfi);
       return -1;
@@ -169,9 +168,9 @@ main (int argc, char *argv[])
   if (ok2 != 200)
     {
       printf ("Expected 200 elements in initialized filter"
-              " after adding 200 and deleting 100 "
-              "(which should do nothing for a filter not backed by a file), got %d\n",
-              ok2);
+             " after adding 200 and deleting 100 "
+             "(which should do nothing for a filter not backed by a file), got %d\n",
+             ok2);
       GNUNET_CONTAINER_bloomfilter_free (bf);
       GNUNET_CONTAINER_bloomfilter_free (bfi);
       return -1;
@@ -185,7 +184,7 @@ main (int argc, char *argv[])
     {
       nextHC (&tmp);
       if (GNUNET_CONTAINER_bloomfilter_test (bf, &tmp) == GNUNET_YES)
-        falseok++;
+       falseok++;
     }
   if (falseok > 0)
     {
@@ -216,15 +215,15 @@ main (int argc, char *argv[])
     {
       nextHC (&tmp);
       if (GNUNET_CONTAINER_bloomfilter_test (bf, &tmp) == GNUNET_YES)
-        ok1++;
+       ok1++;
       if (GNUNET_CONTAINER_bloomfilter_test (bfi, &tmp) == GNUNET_YES)
-        ok2++;
+       ok2++;
     }
 
   if (ok1 != 20)
     {
       printf ("Expected 20 elements in resized file-backed filter"
-              " after adding 20, got %d\n", ok1);
+             " after adding 20, got %d\n", ok1);
       GNUNET_CONTAINER_bloomfilter_free (bf);
       GNUNET_CONTAINER_bloomfilter_free (bfi);
       return -1;
@@ -232,7 +231,7 @@ main (int argc, char *argv[])
   if (ok2 != 20)
     {
       printf ("Expected 20 elements in resized filter"
-              " after adding 20, got %d\n", ok2);
+             " after adding 20, got %d\n", ok2);
       GNUNET_CONTAINER_bloomfilter_free (bf);
       GNUNET_CONTAINER_bloomfilter_free (bfi);
       return -1;