From a331272381d01054ce90790964199bfcee02fe8e Mon Sep 17 00:00:00 2001 From: Julian Kranz Date: Sat, 31 Dec 2011 19:36:31 +0100 Subject: [PATCH] --- --- src/tun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tun.c b/src/tun.c index c46986f..9a82621 100644 --- a/src/tun.c +++ b/src/tun.c @@ -88,7 +88,7 @@ open_tun(const char *tun_device) memset(&ifreq, 0, sizeof(ifreq)); - ifreq.ifr_flags = IFF_TUN | IFF_NO_PI; + ifreq.ifr_flags = IFF_TUN; if (tun_device != NULL) { strncpy(ifreq.ifr_name, tun_device, IFNAMSIZ);