summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGert Doering <gert@greenie.muc.de>2010-02-28 23:09:40 +0100
committerDavid Sommerseth <dazo@users.sourceforge.net>2010-02-28 23:42:12 +0100
commit1ed4098663cc0fc5457bd2f6e67b44c0b24e6f6c (patch)
treea965686884f5ef26abb695c45ad09b643e307a1b
parent6233a9f1ac39a56187f6cf34c4996cbfda5eb588 (diff)
downloadopenvpn-1ed4098663cc0fc5457bd2f6e67b44c0b24e6f6c.tar.gz
openvpn-1ed4098663cc0fc5457bd2f6e67b44c0b24e6f6c.tar.xz
openvpn-1ed4098663cc0fc5457bd2f6e67b44c0b24e6f6c.zip
remove duplicate code in FREEBSD+DRAGONFLY system-dependent ifconfig
(ACKed by Eric F Crist and David Sommerseth) (cherry picked from commit dd66b12647852e3f1267be70b0fb3b11deedf377) Signed-off-by: David Sommerseth <dazo@users.sourceforge.net> Signed-off-by: Gert Doering <gert@greenie.muc.de>
-rw-r--r--tun.c17
1 files changed, 3 insertions, 14 deletions
diff --git a/tun.c b/tun.c
index d82ac49..04573d4 100644
--- a/tun.c
+++ b/tun.c
@@ -860,26 +860,15 @@ do_ifconfig (struct tuntap *tt,
ifconfig_remote_netmask,
tun_mtu
);
- else {
- if (tt->topology == TOP_SUBNET)
- argv_printf (&argv,
- "%s %s %s netmask %s mtu %d up",
+ else
+ argv_printf (&argv,
+ "%s %s %s netmask %s mtu %d up",
IFCONFIG_PATH,
actual,
ifconfig_local,
ifconfig_remote_netmask,
tun_mtu
);
- else
- argv_printf (&argv,
- "%s %s %s netmask %s mtu %d up",
- IFCONFIG_PATH,
- actual,
- ifconfig_local,
- ifconfig_remote_netmask,
- tun_mtu
- );
- }
argv_msg (M_INFO, &argv);
openvpn_execve_check (&argv, es, S_FATAL, "FreeBSD ifconfig failed");