From: Guus Sliepen Date: Sun, 24 Mar 2002 16:36:56 +0000 (+0000) Subject: Set $INTERFACE correctly when using ethertap while compiled with tun/tap support. X-Git-Tag: release-1.0pre6~20 X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=4252ae83a43ea81382ce71ba614e2d1655f2e189;ds=sidebyside Set $INTERFACE correctly when using ethertap while compiled with tun/tap support. --- diff --git a/src/linux/device.c b/src/linux/device.c index 450fcd1d..e896f547 100644 --- a/src/linux/device.c +++ b/src/linux/device.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: device.c,v 1.1.2.7 2002/02/18 16:25:19 guus Exp $ + $Id: device.c,v 1.1.2.8 2002/03/24 16:36:56 guus Exp $ */ #include "config.h" @@ -130,6 +130,7 @@ cp { device_info = _("Linux ethertap device"); device_type = DEVICE_TYPE_ETHERTAP; + interface = rindex(device, '/')?rindex(device, '/')+1:device; } syslog(LOG_INFO, _("%s is a %s"), device, device_info);