aboutsummaryrefslogtreecommitdiff
path: root/src/nat/test_nat_test.c
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2012-05-08 17:10:10 +0000
committerBart Polot <bart@net.in.tum.de>2012-05-08 17:10:10 +0000
commit16546613251edfcd595e4f584b1a2d2a414d0b1a (patch)
tree0a01bd8afdcb9501ee7f9be6d2ecc59648e40392 /src/nat/test_nat_test.c
parent9d268909fe579e36510ef03055c6cec9baa7d07a (diff)
downloadgnunet-16546613251edfcd595e4f584b1a2d2a414d0b1a.tar.gz
gnunet-16546613251edfcd595e4f584b1a2d2a414d0b1a.zip
Renamed GNUNET_OS_process_close to GNUNET_OS_process_destroy
Diffstat (limited to 'src/nat/test_nat_test.c')
-rw-r--r--src/nat/test_nat_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nat/test_nat_test.c b/src/nat/test_nat_test.c
index 64617880a..846d9b08e 100644
--- a/src/nat/test_nat_test.c
+++ b/src/nat/test_nat_test.c
@@ -129,7 +129,7 @@ main (int argc, char *const argv[])
129 NULL); 129 NULL);
130 GNUNET_break (0 == GNUNET_OS_process_kill (gns, SIGTERM)); 130 GNUNET_break (0 == GNUNET_OS_process_kill (gns, SIGTERM));
131 GNUNET_break (GNUNET_OK == GNUNET_OS_process_wait (gns)); 131 GNUNET_break (GNUNET_OK == GNUNET_OS_process_wait (gns));
132 GNUNET_OS_process_close (gns); 132 GNUNET_OS_process_destroy (gns);
133 return ret; 133 return ret;
134} 134}
135 135