aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
author <wachs@net.in.tum.de>2012-07-09 13:10:29 +0000
committer <wachs@net.in.tum.de>2012-07-09 13:10:29 +0000
commit2c92b6e01e520db3dea98b503a59cc821778731b (patch)
tree221aabb468647e76eeb611c59d2e159ce3ae86ec /src
parent0ff497ef46091199d227453021e5f3d290e381cf (diff)
downloadgnunet-ext-2c92b6e01e520db3dea98b503a59cc821778731b.tar.gz
gnunet-ext-2c92b6e01e520db3dea98b503a59cc821778731b.zip
- bug
Diffstat (limited to 'src')
-rw-r--r--src/ext/test_ext_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ext/test_ext_api.c b/src/ext/test_ext_api.c
index 70f137a..aaa1064 100644
--- a/src/ext/test_ext_api.c
+++ b/src/ext/test_ext_api.c
@@ -45,7 +45,7 @@ check ()
45 }; 45 };
46 struct GNUNET_OS_Process *proc; 46 struct GNUNET_OS_Process *proc;
47 47
48 proc = GNUNET_OS_start_process (NULL, NULL, 48 proc = GNUNET_OS_start_process (GNUNET_NO, NULL, NULL,
49 "gnunet-service-ext", 49 "gnunet-service-ext",
50 "gnunet-service-ext", 50 "gnunet-service-ext",
51 NULL); 51 NULL);
@@ -58,7 +58,7 @@ check ()
58 ok = 1; 58 ok = 1;
59 } 59 }
60 GNUNET_OS_process_wait (proc); 60 GNUNET_OS_process_wait (proc);
61 GNUNET_OS_process_close (proc); 61 GNUNET_OS_process_destroy (proc);
62 return ok; 62 return ok;
63} 63}
64 64