apparmor: Fix warning about unused function apparmor_ipv6_postroute
when compiled without CONFIG_IPV6: security/apparmor/lsm.c:1601:21: warning: ‘apparmor_ipv6_postroute’ defined but not used [-Wunused-function] static unsigned int apparmor_ipv6_postroute(void *priv, ^~~~~~~~~~~~~~~~~~~~~~~ Reported-by: Jordan Glover <Golden_Miller83@protonmail.ch> Tested-by: Jordan Glover <Golden_Miller83@protonmail.ch> Signed-off-by: Petr Vorel <pvorel@suse.cz> Signed-off-by: John Johansen <john.johansen@canonical.com>
This commit is contained in:
committed by
John Johansen
parent
f17b5f06cb
commit
a1a02062ad
@ -1599,12 +1599,14 @@ static unsigned int apparmor_ipv4_postroute(void *priv,
|
|||||||
return apparmor_ip_postroute(priv, skb, state);
|
return apparmor_ip_postroute(priv, skb, state);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if IS_ENABLED(CONFIG_IPV6)
|
||||||
static unsigned int apparmor_ipv6_postroute(void *priv,
|
static unsigned int apparmor_ipv6_postroute(void *priv,
|
||||||
struct sk_buff *skb,
|
struct sk_buff *skb,
|
||||||
const struct nf_hook_state *state)
|
const struct nf_hook_state *state)
|
||||||
{
|
{
|
||||||
return apparmor_ip_postroute(priv, skb, state);
|
return apparmor_ip_postroute(priv, skb, state);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static const struct nf_hook_ops apparmor_nf_ops[] = {
|
static const struct nf_hook_ops apparmor_nf_ops[] = {
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user