aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_wlan.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/transport/plugin_transport_wlan.c
parent9d268909fe579e36510ef03055c6cec9baa7d07a (diff)
downloadgnunet-16546613251edfcd595e4f584b1a2d2a414d0b1a.tar.gz
gnunet-16546613251edfcd595e4f584b1a2d2a414d0b1a.zip
Renamed GNUNET_OS_process_close to GNUNET_OS_process_destroy
Diffstat (limited to 'src/transport/plugin_transport_wlan.c')
-rw-r--r--src/transport/plugin_transport_wlan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_wlan.c b/src/transport/plugin_transport_wlan.c
index a6da2f688..7711dec06 100644
--- a/src/transport/plugin_transport_wlan.c
+++ b/src/transport/plugin_transport_wlan.c
@@ -1480,7 +1480,7 @@ wlan_transport_stop_wlan_helper (struct Plugin *plugin)
1480 GNUNET_DISK_pipe_close (plugin->server_stdin); 1480 GNUNET_DISK_pipe_close (plugin->server_stdin);
1481 GNUNET_OS_process_kill (plugin->server_proc, SIGKILL); 1481 GNUNET_OS_process_kill (plugin->server_proc, SIGKILL);
1482 GNUNET_OS_process_wait (plugin->server_proc); 1482 GNUNET_OS_process_wait (plugin->server_proc);
1483 GNUNET_OS_process_close (plugin->server_proc); 1483 GNUNET_OS_process_destroy (plugin->server_proc);
1484 plugin->helper_is_running = GNUNET_NO; 1484 plugin->helper_is_running = GNUNET_NO;
1485 return GNUNET_YES; 1485 return GNUNET_YES;
1486} 1486}