From: Markus Elfring Date: Tue, 2 Jul 2019 18:06:30 +0000 (+0200) Subject: netfilter: nf_log: Replace a seq_printf() call by seq_puts() in seq_show() X-Git-Tag: v5.4-rc1~616^2~44^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eca27f14b1168a8962023571b29d2ec593788b61;p=platform%2Fkernel%2Flinux-rpi.git netfilter: nf_log: Replace a seq_printf() call by seq_puts() in seq_show() A string which did not contain a data format specification should be put into a sequence. Thus use the corresponding function “seq_puts”. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring Signed-off-by: Pablo Neira Ayuso --- diff --git a/net/netfilter/nf_log.c b/net/netfilter/nf_log.c index 3574a21..bb25d4c 100644 --- a/net/netfilter/nf_log.c +++ b/net/netfilter/nf_log.c @@ -374,7 +374,7 @@ static int seq_show(struct seq_file *s, void *v) continue; logger = nft_log_dereference(loggers[*pos][i]); - seq_printf(s, "%s", logger->name); + seq_puts(s, logger->name); if (i == 0 && loggers[*pos][i + 1] != NULL) seq_puts(s, ",");