From: Liping Zhang <liping.zhang@xxxxxxxxxxxxxx> After test NFTNL_EXPR_LOG_FLAGS is set, we should put "log->flags" instead of "log->level". Signed-off-by: Liping Zhang <liping.zhang@xxxxxxxxxxxxxx> --- src/expr/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/expr/log.c b/src/expr/log.c index 57490d9..e965448 100644 --- a/src/expr/log.c +++ b/src/expr/log.c @@ -264,7 +264,7 @@ static int nftnl_expr_log_export(char *buf, size_t size, if (e->flags & (1 << NFTNL_EXPR_LOG_LEVEL)) nftnl_buf_u32(&b, type, log->level, LEVEL); if (e->flags & (1 << NFTNL_EXPR_LOG_FLAGS)) - nftnl_buf_u32(&b, type, log->level, FLAGS); + nftnl_buf_u32(&b, type, log->flags, FLAGS); return nftnl_buf_done(&b); } -- 2.5.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