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>
This commit is contained in:
Markus Elfring 2019-07-02 20:06:30 +02:00 committed by Pablo Neira Ayuso
parent f0c1aab2bd
commit eca27f14b1
1 changed files with 1 additions and 1 deletions

View File

@ -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, ",");