--- gvpe/src/device-tincd.C 2005/03/23 21:55:39 1.15 +++ gvpe/src/device-tincd.C 2005/03/25 15:38:07 1.17 @@ -93,21 +93,21 @@ #if IF_linux # include "tincd/linux/device.c" -const char * tap_device::if_up () { return "/sbin/ifconfig $IFNAME hw ether $MAC mtu $MTU up"; } +const char * tap_device::if_up () { return "/sbin/ifconfig $IFNAME hw ether $MAC mtu $MTU"; } #elif IF_freebsd # include "tincd/freebsd/device.c" -const char * tap_device::if_up () { return "/sbin/ifconfig $IFNAME ether $MAC mtu $MTU up"; } +const char * tap_device::if_up () { return "/sbin/ifconfig $IFNAME ether $MAC mtu $MTU"; } #elif IF_netbsd # define IF_istun 1 # include "tincd/netbsd/device.c" -const char * tap_device::if_up () { return "/sbin/ifconfig $IFNAME mtu $MTU up"; } +const char * tap_device::if_up () { return "/sbin/ifconfig $IFNAME mtu $MTU"; } #elif IF_openbsd # define IF_istun 1 # include "tincd/openbsd/device.c" -const char * tap_device::if_up () { return "/sbin/ifconfig $IFNAME mtu $MTU up"; } +const char * tap_device::if_up () { return "/sbin/ifconfig $IFNAME mtu $MTU"; } #elif IF_solaris # define IF_istun 1 @@ -125,11 +125,11 @@ #elif IF_darwin # define IF_istun 1 # include "tincd/darwin/device.c" -const char * tap_device::if_up () { return "/sbin/ifconfig $IFNAME ether $MAC mtu $MTU up"; } +const char * tap_device::if_up () { return "/sbin/ifconfig $IFNAME ether $MAC mtu $MTU"; } #elif IF_raw_socket # include "tincd/raw_socket/device.c" -const char * tap_device::if_up () { return "/sbin/ifconfig $IFNAME ether $MAC mtu $MTU up"; } +const char * tap_device::if_up () { return "/sbin/ifconfig $IFNAME ether $MAC mtu $MTU"; } #elif IF_uml_socket # include "tincd/uml_socket/device.c"