summaryrefslogtreecommitdiffstats
path: root/security/selinux/hooks.c
diff options
context:
space:
mode:
authorHong zhi guo2013-03-27 07:49:35 +0100
committerDavid S. Miller2013-03-28 19:25:49 +0100
commit77954983ad76e4f10cee8d2e06fcd085fae11780 (patch)
tree71bdf43c7d6954818718606c4b6ed09ff4cdf91a /security/selinux/hooks.c
parentaudit: replace obsolete NLMSG_* with type safe nlmsg_* (diff)
downloadkernel-qcow2-linux-77954983ad76e4f10cee8d2e06fcd085fae11780.tar.gz
kernel-qcow2-linux-77954983ad76e4f10cee8d2e06fcd085fae11780.tar.xz
kernel-qcow2-linux-77954983ad76e4f10cee8d2e06fcd085fae11780.zip
selinux: replace obsolete NLMSG_* with type safe nlmsg_*
Signed-off-by: Hong Zhiguo <honkiko@gmail.com> Acked-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'security/selinux/hooks.c')
-rw-r--r--security/selinux/hooks.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
index 2fa28c88900c..0a0609fce28b 100644
--- a/security/selinux/hooks.c
+++ b/security/selinux/hooks.c
@@ -60,7 +60,7 @@
#include <linux/bitops.h>
#include <linux/interrupt.h>
#include <linux/netdevice.h> /* for network interface checks */
-#include <linux/netlink.h>
+#include <net/netlink.h>
#include <linux/tcp.h>
#include <linux/udp.h>
#include <linux/dccp.h>
@@ -4475,7 +4475,7 @@ static int selinux_nlmsg_perm(struct sock *sk, struct sk_buff *skb)
struct nlmsghdr *nlh;
struct sk_security_struct *sksec = sk->sk_security;
- if (skb->len < NLMSG_SPACE(0)) {
+ if (skb->len < NLMSG_HDRLEN) {
err = -EINVAL;
goto out;
}