diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-04-28 19:16:24 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-04-28 19:16:24 +0000 |
commit | 342a0e766022b18ef50178c9f23436180149d452 (patch) | |
tree | baa089cda9d4827b8bd9bb29d8f8b1fc7577cd16 /target/linux/generic-2.6/patches-2.6.29 | |
parent | 8ec2ad91ad317942c48972624312088eaaa79188 (diff) | |
download | upstream-342a0e766022b18ef50178c9f23436180149d452.tar.gz upstream-342a0e766022b18ef50178c9f23436180149d452.tar.bz2 upstream-342a0e766022b18ef50178c9f23436180149d452.zip |
fix a small bug in the socket type patch which broke dhcp
SVN-Revision: 15471
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.patch | 2 |
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; |