From 0aee9ca7e76887fb5752c15ef63bfb7a356df06e Mon Sep 17 00:00:00 2001 From: james Date: Mon, 21 Jan 2008 19:34:13 +0000 Subject: Allow OpenVPN to run completely unprivileged under Linux by allowing openvpn --mktun to be used with --user and --group to set the UID/GID of the tun device node. Also added --iproute option to allow an alternative command to be executed in place of the default iproute2 command (Alon Bar-Lev). git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2639 e7ae566f-a301-0410-adde-c780ea21d3b5 --- lladdr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lladdr.c') diff --git a/lladdr.c b/lladdr.c index 1f02ba4..1daa379 100644 --- a/lladdr.c +++ b/lladdr.c @@ -24,8 +24,8 @@ int set_lladdr(const char *ifname, const char *lladdr, #if defined(TARGET_LINUX) #ifdef CONFIG_FEATURE_IPROUTE openvpn_snprintf (cmd, sizeof (cmd), - IPROUTE_PATH " link set addr %s dev %s", - lladdr, ifname); + "%s link set addr %s dev %s", + iproute_path, lladdr, ifname); #else openvpn_snprintf (cmd, sizeof (cmd), IFCONFIG_PATH " %s hw ether %s", -- cgit