fixing common off-by-one error with respect to maximum message size
[oweals/gnunet.git] / src / fs / test_fs_search_persistence.c
index eb25a2082d3c27e4aadefb7eee1b8d1f32d8b2f6..7ea0130ae260d9ce38735e407c1283b96a080760 100644 (file)
@@ -168,12 +168,12 @@ progress_cb (void *cls,
       GNUNET_assert (search != NULL);
       break;
     case GNUNET_FS_STATUS_PUBLISH_SUSPEND:
-      if  (event->value.publish.sc == publish)
+      if  (event->value.publish.pc == publish)
        publish = NULL;
       break;
     case GNUNET_FS_STATUS_PUBLISH_RESUME:
       if (NULL == publish)
-       publish = event->value.publish.sc;
+       publish = event->value.publish.pc;
       break;
     case GNUNET_FS_STATUS_SEARCH_RESULT:
       /* FIXME: consider_restart (event->status); cannot be tested with
@@ -224,7 +224,7 @@ progress_cb (void *cls,
       GNUNET_assert (1 == event->value.publish.anonymity);
       break;
     case GNUNET_FS_STATUS_PUBLISH_STOPPED:
-      GNUNET_assert (publish == event->value.publish.sc);
+      GNUNET_assert (publish == event->value.publish.pc);
       GNUNET_assert (FILESIZE == event->value.publish.size);
       GNUNET_assert (1 == event->value.publish.anonymity);
       GNUNET_FS_stop (fs);
@@ -359,6 +359,7 @@ main (int argc, char *argv[])
     GNUNET_GETOPT_OPTION_END
   };
 
+  GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-search/");
   GNUNET_log_setup ("test_fs_search_persistence", 
 #if VERBOSE
                    "DEBUG",
@@ -367,7 +368,7 @@ main (int argc, char *argv[])
 #endif
                    NULL);
   GNUNET_PROGRAM_run ((sizeof (argvx) / sizeof (char *)) - 1,
-                      argvx, "test-fs-search-persistencce",
+                      argvx, "test-fs-search-persistence",
                      "nohelp", options, &run, NULL);
   stop_arm (&p1);
   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-search/");