An error in the type of an argument in the call to inet_ntop was causing IPv6 address to be transformed in a string not really related to the real Ipv6 address. Signed-off-by: Eric Leblond <eric@xxxxxx> --- :100644 100644 9f36d60... e4ec06d... M filter/ulogd_filter_IP2STR.c filter/ulogd_filter_IP2STR.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/filter/ulogd_filter_IP2STR.c b/filter/ulogd_filter_IP2STR.c index 9f36d60..e4ec06d 100644 --- a/filter/ulogd_filter_IP2STR.c +++ b/filter/ulogd_filter_IP2STR.c @@ -174,7 +174,7 @@ static char *ip2str(struct ulogd_key *inp, int index) switch (convfamily) { case AF_INET6: inet_ntop(AF_INET6, - &GET_VALUE(inp, index).ptr, + GET_VALUE(inp, index).ptr, tmp, sizeof(tmp)); break; case AF_INET: -- 1.5.2.5 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html