diff options
author | Patrick McHardy <kaber@trash.net> | 2007-03-07 04:24:35 (GMT) |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-03-08 00:08:02 (GMT) |
commit | 881dbfe8accc9434dd0d7d052505e3dca6ad9b3c (patch) | |
tree | 2e742e2ae5162be28ca2ede93daea67712b83ddd | |
parent | dd63006b8fb5abf2336e145632610c6175a28fea (diff) | |
download | linux-fsl-qoriq-881dbfe8accc9434dd0d7d052505e3dca6ad9b3c.tar.xz |
[NETFILTER]: nfnetlink_log: zero-terminate prefix
Userspace expects a zero-terminated string, so include the trailing
zero in the netlink message.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/netfilter/nfnetlink_log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/nfnetlink_log.c b/net/netfilter/nfnetlink_log.c index 91a0972..12f92e2 100644 --- a/net/netfilter/nfnetlink_log.c +++ b/net/netfilter/nfnetlink_log.c @@ -615,7 +615,7 @@ nfulnl_log_packet(unsigned int pf, plen = 0; if (prefix) - plen = strlen(prefix); + plen = strlen(prefix) + 1; /* all macros expand to constant values at compile time */ /* FIXME: do we want to make the size calculation conditional based on |