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/uanytun.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/uanytun.c') diff --git a/src/uanytun.c b/src/uanytun.c index 9f5e8b2..81a293b 100644 --- a/src/uanytun.c +++ b/src/uanytun.c @@ -402,7 +402,8 @@ int main(int argc, char* argv[]) if(opt.post_up_script_) { log_printf(NOTICE, "executing post-up script '%s'", opt.post_up_script_); char* const argv[] = { opt.post_up_script_, dev.actual_name_, NULL }; - int ret = uanytun_exec(opt.post_up_script_, argv, NULL); + char* const evp[] = { NULL }; + int ret = uanytun_exec(opt.post_up_script_, argv, evp); } -- cgit v1.2.3