summaryrefslogtreecommitdiffstats
path: root/net/core/rtnetlink.c
diff options
context:
space:
mode:
authorDavid S. Miller2011-01-18 21:40:38 +0100
committerDavid S. Miller2011-01-19 22:34:20 +0100
commitb8f3ab4290f1e720166e888ea2a1d1d44c4d15dd (patch)
tree88d5b71b27ed9ca0b5d67bd6ae61f592fb61fdc5 /net/core/rtnetlink.c
parentgianfar: Fix misleading indentation in startup_gfar() (diff)
downloadkernel-qcow2-linux-b8f3ab4290f1e720166e888ea2a1d1d44c4d15dd.tar.gz
kernel-qcow2-linux-b8f3ab4290f1e720166e888ea2a1d1d44c4d15dd.tar.xz
kernel-qcow2-linux-b8f3ab4290f1e720166e888ea2a1d1d44c4d15dd.zip
Revert "netlink: test for all flags of the NLM_F_DUMP composite"
This reverts commit 0ab03c2b1478f2438d2c80204f7fef65b1bca9cf. It breaks several things including the avahi daemon. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/rtnetlink.c')
-rw-r--r--net/core/rtnetlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
index a5f7535aab5b..750db57f3bb3 100644
--- a/net/core/rtnetlink.c
+++ b/net/core/rtnetlink.c
@@ -1820,7 +1820,7 @@ static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN))
return -EPERM;
- if (kind == 2 && (nlh->nlmsg_flags & NLM_F_DUMP) == NLM_F_DUMP) {
+ if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
struct sock *rtnl;
rtnl_dumpit_func dumpit;