[NETFILTER]: fix format specifier for netfilter log targets
The prefix argument for nf_log_packet is a format specifier, so don't pass the user defined string directly to it. Signed-off-by: Philip Craig <philipc@snapgear.com> Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
493e2428aa
commit
5c170a09d9
@@ -439,7 +439,7 @@ ip6t_log_target(struct sk_buff **pskb,
|
||||
|
||||
if (loginfo->logflags & IP6T_LOG_NFLOG)
|
||||
nf_log_packet(PF_INET6, hooknum, *pskb, in, out, &li,
|
||||
loginfo->prefix);
|
||||
"%s", loginfo->prefix);
|
||||
else
|
||||
ip6t_log_packet(PF_INET6, hooknum, *pskb, in, out, &li,
|
||||
loginfo->prefix);
|
||||
|
Reference in New Issue
Block a user