From 8770711aa8e6ec875f9d79b5eceab80f1935c498 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Wed, 24 Jun 2009 10:31:40 +0000 Subject: more portibke way of calling execve --- src/linux/tun.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/linux') diff --git a/src/linux/tun.c b/src/linux/tun.c index 77f95fe..3fdf817 100644 --- a/src/linux/tun.c +++ b/src/linux/tun.c @@ -198,7 +198,8 @@ void tun_do_ifconfig(tun_device_t* dev) } char* const argv[] = { "/sbin/ifconfig", dev->actual_name_, dev->net_addr_, "netmask", dev->net_mask_, "mtu", mtu_str, NULL }; - uanytun_exec("/sbin/ifconfig", argv, NULL); + char* const evp[] = { NULL }; + uanytun_exec("/sbin/ifconfig", argv, evp); free(mtu_str); } -- cgit v1.2.3