aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.6/patches-2.6.29
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-04-28 19:16:24 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-04-28 19:16:24 +0000
commit7285d30e8fe2fef722f42c9d0e3bd4ff7a6c466a (patch)
treee599797de2aa11115258253cf4d9eecd0e39c9a7 /target/linux/generic-2.6/patches-2.6.29
parentf8e84c4e39ec732280ea65d7a4862e08807c6a5c (diff)
downloadupstream-7285d30e8fe2fef722f42c9d0e3bd4ff7a6c466a.tar.gz
upstream-7285d30e8fe2fef722f42c9d0e3bd4ff7a6c466a.tar.bz2
upstream-7285d30e8fe2fef722f42c9d0e3bd4ff7a6c466a.zip
fix a small bug in the socket type patch which broke dhcp
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15471 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.29')
-rw-r--r--target/linux/generic-2.6/patches-2.6.29/240-packet_socket_type.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.29/240-packet_socket_type.patch b/target/linux/generic-2.6/patches-2.6.29/240-packet_socket_type.patch
index 710b7c06ab..720d3201f3 100644
--- a/target/linux/generic-2.6/patches-2.6.29/240-packet_socket_type.patch
+++ b/target/linux/generic-2.6/patches-2.6.29/240-packet_socket_type.patch
@@ -95,7 +95,7 @@ Signed-off-by: Felix Fietkau <nbd@openwrt.org>
spin_lock_init(&po->bind_lock);
mutex_init(&po->pg_vec_lock);
po->prot_hook.func = packet_rcv;
-+ po->pkt_type = PACKET_MASK_ANY & ~PACKET_LOOPBACK;
++ po->pkt_type = PACKET_MASK_ANY & ~(1 << PACKET_LOOPBACK);
if (sock->type == SOCK_PACKET)
po->prot_hook.func = packet_rcv_spkt;