Set $INTERFACE correctly when using ethertap while compiled with tun/tap support.
This commit is contained in:
parent
d699f3079c
commit
4252ae83a4
1 changed files with 2 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
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"
|
#include "config.h"
|
||||||
|
@ -130,6 +130,7 @@ cp
|
||||||
{
|
{
|
||||||
device_info = _("Linux ethertap device");
|
device_info = _("Linux ethertap device");
|
||||||
device_type = DEVICE_TYPE_ETHERTAP;
|
device_type = DEVICE_TYPE_ETHERTAP;
|
||||||
|
interface = rindex(device, '/')?rindex(device, '/')+1:device;
|
||||||
}
|
}
|
||||||
|
|
||||||
syslog(LOG_INFO, _("%s is a %s"), device, device_info);
|
syslog(LOG_INFO, _("%s is a %s"), device, device_info);
|
||||||
|
|
Loading…
Reference in a new issue