summaryrefslogtreecommitdiffstats
path: root/net/netfilter
diff options
context:
space:
mode:
authorMarkus Elfring2019-07-02 20:06:30 +0200
committerPablo Neira Ayuso2019-07-04 02:29:48 +0200
commiteca27f14b1168a8962023571b29d2ec593788b61 (patch)
tree0fcb0fb4b8d973e06735e70ca9ef20b881f084b8 /net/netfilter
parentnetfilter: rename nf_SYNPROXY.h to nf_synproxy.h (diff)
downloadkernel-qcow2-linux-eca27f14b1168a8962023571b29d2ec593788b61.tar.gz
kernel-qcow2-linux-eca27f14b1168a8962023571b29d2ec593788b61.tar.xz
kernel-qcow2-linux-eca27f14b1168a8962023571b29d2ec593788b61.zip
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 <elfring@users.sourceforge.net> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter')
-rw-r--r--net/netfilter/nf_log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/nf_log.c b/net/netfilter/nf_log.c
index 3574a212bdc2..bb25d4c794c7 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, ",");