projects
/
oweals
/
gnunet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b01d715
)
compile-it
author
Christian Grothoff
<christian@grothoff.org>
Mon, 27 Jul 2009 17:32:51 +0000
(17:32 +0000)
committer
Christian Grothoff
<christian@grothoff.org>
Mon, 27 Jul 2009 17:32:51 +0000
(17:32 +0000)
src/testing/testing_group.c
patch
|
blob
|
history
diff --git
a/src/testing/testing_group.c
b/src/testing/testing_group.c
index 125c28e461090570c036626bd19fa1a4e1b55e1b..1a4a7f6e96d6dacfd42ddc528bbddaf4d4ac267f 100644
(file)
--- a/
src/testing/testing_group.c
+++ b/
src/testing/testing_group.c
@@
-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;
}