compile-it
authorChristian Grothoff <christian@grothoff.org>
Mon, 27 Jul 2009 17:32:51 +0000 (17:32 +0000)
committerChristian Grothoff <christian@grothoff.org>
Mon, 27 Jul 2009 17:32:51 +0000 (17:32 +0000)
src/testing/testing_group.c

index 125c28e461090570c036626bd19fa1a4e1b55e1b..1a4a7f6e96d6dacfd42ddc528bbddaf4d4ac267f 100644 (file)
@@ -94,17 +94,16 @@ GNUNET_TESTING_daemons_start (struct GNUNET_SCHEDULER_Handle *sched,
                              void *cb_cls,
                              const char *hostname,
                              ...)
-
 {
+  struct GNUNET_TESTING_PeerGroup * ret;
   va_list va;
   
   va_start (va, hostname);
-  GNUNET_TESTING_daemons_start_va (sched, cfg,
-                                  total, service_home_prefix,
-                                  transports, applications,
-                                  cb, cb_cls, cbe, cbe_cls, hostname,
-                                  va);
+  ret = GNUNET_TESTING_daemons_start_va (sched, cfg,
+                                        total, cb, cb_cls, hostname,
+                                        va);
   va_end (va);
+  return ret;
 }