From db24e8b6f9461e158bfcd58370affbd019547895 Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Mon, 2 Apr 2007 00:01:02 +0000 Subject: [PATCH] revert [6686] - no longer necessary since [6814] git-svn-id: svn://svn.openwrt.org/openwrt/packages/net/batman@6816 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- patches/101-tun_device.patch | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 patches/101-tun_device.patch diff --git a/patches/101-tun_device.patch b/patches/101-tun_device.patch deleted file mode 100644 index 26d528f..0000000 --- a/patches/101-tun_device.patch +++ /dev/null @@ -1,27 +0,0 @@ -diff -ruN batman-III-0.2.0a.old/linux-specific.c batman-III-0.2.0a/linux-specific.c ---- batman-III-0.2.0a.old/linux-specific.c 2007-02-20 21:07:29.000000000 +0100 -+++ batman-III-0.2.0a/linux-specific.c 2007-03-19 15:34:36.000000000 +0100 -@@ -111,9 +111,9 @@ - - int32_t fd; - -- if ( ( fd = open( "/dev/net/tun", O_RDWR ) ) < 0 ) { -+ if ( ( fd = open( "/dev/tun", O_RDWR ) ) < 0 ) { - -- debug_output( 0, "Error - could not open '/dev/net/tun' ! Is the tun kernel module loaded ?\n" ); -+ debug_output( 0, "Error - could not open '/dev/tun' ! Is the tun kernel module loaded ?\n" ); - return 0; - - } -@@ -151,9 +151,9 @@ - memset( &ifr_if, 0, sizeof(ifr_if) ); - ifr_tun.ifr_flags = IFF_TUN | IFF_NO_PI; - -- if ( ( *fd = open( "/dev/net/tun", O_RDWR ) ) < 0 ) { -+ if ( ( *fd = open( "/dev/tun", O_RDWR ) ) < 0 ) { - -- debug_output( 0, "Error - can't create tun device (/dev/net/tun): %s\n", strerror(errno) ); -+ debug_output( 0, "Error - can't create tun device (/dev/tun): %s\n", strerror(errno) ); - return -1; - - }