gnunet-ext

Template for writing GNUnet extensions
Log | Files | Refs | README | LICENSE

commit 2c92b6e01e520db3dea98b503a59cc821778731b
parent 0ff497ef46091199d227453021e5f3d290e381cf
Author:  <wachs@net.in.tum.de>
Date:   Mon,  9 Jul 2012 13:10:29 +0000

- bug


Diffstat:
Msrc/ext/test_ext_api.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/ext/test_ext_api.c b/src/ext/test_ext_api.c @@ -45,7 +45,7 @@ check () }; struct GNUNET_OS_Process *proc; - proc = GNUNET_OS_start_process (NULL, NULL, + proc = GNUNET_OS_start_process (GNUNET_NO, NULL, NULL, "gnunet-service-ext", "gnunet-service-ext", NULL); @@ -58,7 +58,7 @@ check () ok = 1; } GNUNET_OS_process_wait (proc); - GNUNET_OS_process_close (proc); + GNUNET_OS_process_destroy (proc); return ok; }