netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] netfilter: nf_log: Replace a seq_printf() call by seq_puts() in seq_show()
@ 2019-07-02 18:11 Markus Elfring
  2019-07-03 11:38 ` Pablo Neira Ayuso
  0 siblings, 1 reply; 2+ messages in thread
From: Markus Elfring @ 2019-07-02 18:11 UTC (permalink / raw)
  To: netfilter-devel, coreteam, netdev, David S. Miller,
	Florian Westphal, Jozsef Kadlecsik, Pablo Neira Ayuso
  Cc: LKML, kernel-janitors

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Tue, 2 Jul 2019 20:06:30 +0200

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>
---
 net/netfilter/nf_log.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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

--
2.22.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] netfilter: nf_log: Replace a seq_printf() call by seq_puts() in seq_show()
  2019-07-02 18:11 [PATCH] netfilter: nf_log: Replace a seq_printf() call by seq_puts() in seq_show() Markus Elfring
@ 2019-07-03 11:38 ` Pablo Neira Ayuso
  0 siblings, 0 replies; 2+ messages in thread
From: Pablo Neira Ayuso @ 2019-07-03 11:38 UTC (permalink / raw)
  To: Markus Elfring
  Cc: netfilter-devel, coreteam, netdev, David S. Miller,
	Florian Westphal, Jozsef Kadlecsik, LKML, kernel-janitors

On Tue, Jul 02, 2019 at 08:11:53PM +0200, Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Tue, 2 Jul 2019 20:06:30 +0200
> 
> 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.

Applied, thanks.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-07-03 11:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-02 18:11 [PATCH] netfilter: nf_log: Replace a seq_printf() call by seq_puts() in seq_show() Markus Elfring
2019-07-03 11:38 ` Pablo Neira Ayuso

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).