summaryrefslogtreecommitdiff
path: root/emulators/qemu-devel/files/hw_e1000_c.patch
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/qemu-devel/files/hw_e1000_c.patch')
-rw-r--r--emulators/qemu-devel/files/hw_e1000_c.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/emulators/qemu-devel/files/hw_e1000_c.patch b/emulators/qemu-devel/files/hw_e1000_c.patch
deleted file mode 100644
index 8cd6ded303d3..000000000000
--- a/emulators/qemu-devel/files/hw_e1000_c.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- qemu-0.14.1/hw/net/e1000.c.orig
-+++ qemu-0.14.1/hw/net/e1000.c
-@@ -573,7 +573,7 @@
- if (rctl & E1000_RCTL_UPE) // promiscuous
- return 1;
-
-- if ((buf[0] & 1) && (rctl & E1000_RCTL_MPE)) // promiscuous mcast
-+ if (buf[0] & 1) // promiscuous mcast
- return 1;
-
- if ((rctl & E1000_RCTL_BAM) && !memcmp(buf, bcast, sizeof bcast))