Commit d00aff44 authored by Patrick McHardy's avatar Patrick McHardy Committed by Greg Kroah-Hartman

nfnetlink_log: zero-terminate prefix

[NETFILTER]: nfnetlink_log: zero-terminate prefix

Userspace expects a zero-terminated string, so include the trailing
zero in the netlink message.
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 868f0120
...@@ -620,7 +620,7 @@ nfulnl_log_packet(unsigned int pf, ...@@ -620,7 +620,7 @@ nfulnl_log_packet(unsigned int pf,
plen = 0; plen = 0;
if (prefix) if (prefix)
plen = strlen(prefix); plen = strlen(prefix) + 1;
/* all macros expand to constant values at compile time */ /* all macros expand to constant values at compile time */
/* FIXME: do we want to make the size calculation conditional based on /* FIXME: do we want to make the size calculation conditional based on
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment