OSDN Git Service

selinux: fix typo in selinux_netlbl_sctp_sk_clone declaration
authorArnd Bergmann <arnd@arndb.de>
Fri, 23 Feb 2018 21:12:09 +0000 (22:12 +0100)
committerPaul Moore <paul@paul-moore.com>
Mon, 26 Feb 2018 22:45:32 +0000 (17:45 -0500)
commit2572f5b4245abf2b4e5a86cabf65a50efda09aac
treec424fe40b5cb4a558d1c011b6eaff3a7eb0e1459
parentd452930fd3b9031e59abfeddb2fa383f1403d61a
selinux: fix typo in selinux_netlbl_sctp_sk_clone declaration

A missing 'struct' keyword caused a build error when CONFIG_NETLABEL
is disabled:

In file included from security/selinux/hooks.c:99:
security/selinux/include/netlabel.h:135:66: error: unknown type name 'sock'
 static inline void selinux_netlbl_sctp_sk_clone(struct sock *sk, sock *newsk)
                                                                  ^~~~
security/selinux/hooks.c: In function 'selinux_sctp_sk_clone':
security/selinux/hooks.c:5188:2: error: implicit declaration of function 'selinux_netlbl_sctp_sk_clone'; did you mean 'selinux_netlbl_inet_csk_clone'? [-Werror=implicit-function-declaration]

Fixes: db97c9f9d312 ("selinux: Add SCTP support")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Paul Moore <paul@paul-moore.com>
security/selinux/include/netlabel.h