summaryrefslogtreecommitdiffstats
path: root/package/ppp/patches/102-debian_pppoe_multicast_pado.patch
diff options
context:
space:
mode:
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 3a9200590..000000000
--- 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);