aboutsummaryrefslogtreecommitdiffstats
path: root/package/ppp/patches/102-debian_pppoe_multicast_pado.patch
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-05-20 22:36:38 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-05-20 22:36:38 +0000
commit9137c11605e9bd0f7cc67895fd852e0b04cb672d (patch)
tree1796065955c8d3cb89a35b12741566a7198d93fd /package/ppp/patches/102-debian_pppoe_multicast_pado.patch
parent89127a67f2707136d0219cba44138aa65889ebef (diff)
downloadupstream-9137c11605e9bd0f7cc67895fd852e0b04cb672d.tar.gz
upstream-9137c11605e9bd0f7cc67895fd852e0b04cb672d.tar.bz2
upstream-9137c11605e9bd0f7cc67895fd852e0b04cb672d.zip
update ppp to v2.4.4 (#5102)
SVN-Revision: 15955
Diffstat (limited to 'package/ppp/patches/102-debian_pppoe_multicast_pado.patch')
-rw-r--r--package/ppp/patches/102-debian_pppoe_multicast_pado.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/package/ppp/patches/102-debian_pppoe_multicast_pado.patch b/package/ppp/patches/102-debian_pppoe_multicast_pado.patch
deleted file mode 100644
index 3a92005903..0000000000
--- a/package/ppp/patches/102-debian_pppoe_multicast_pado.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Index: ppp-2.4.3/pppd/plugins/rp-pppoe/discovery.c
-===================================================================
---- ppp-2.4.3.orig/pppd/plugins/rp-pppoe/discovery.c 2007-06-04 13:22:08.458569384 +0200
-+++ ppp-2.4.3/pppd/plugins/rp-pppoe/discovery.c 2007-06-04 13:22:09.225452800 +0200
-@@ -365,8 +365,8 @@
- if (!packetIsForMe(conn, &packet)) continue;
-
- if (packet.code == CODE_PADO) {
-- if (NOT_UNICAST(packet.ethHdr.h_source)) {
-- printErr("Ignoring PADO packet from non-unicast MAC address");
-+ if (BROADCAST(packet.ethHdr.h_source)) {
-+ printErr("Ignoring PADO packet from broadcast MAC address");
- continue;
- }
- parsePacket(&packet, parsePADOTags, &pc);