All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH iptables] netfilter: hashlimit: prefer PRIu64 to avoid warnings on 32bit platforms
@ 2019-09-10 21:08 Florian Westphal
  2019-09-11 17:21 ` Pablo Neira Ayuso
  0 siblings, 1 reply; 2+ messages in thread
From: Florian Westphal @ 2019-09-10 21:08 UTC (permalink / raw)
  To: netfilter-devel; +Cc: Duncan Roe, Florian Westphal

From: Duncan Roe <duncan_roe@optusnet.com.au>

I found this patch attached to an older BZ, apply this finally...

Closes: https://bugzilla.netfilter.org/show_bug.cgi?id=1107
Signed-off-by: Florian Westphal <fw@strlen.de>
---
 extensions/libxt_hashlimit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/extensions/libxt_hashlimit.c b/extensions/libxt_hashlimit.c
index f3b6e04309bd..7f1d2a402c4f 100644
--- a/extensions/libxt_hashlimit.c
+++ b/extensions/libxt_hashlimit.c
@@ -772,7 +772,7 @@ static void hashlimit_mt_check(struct xt_fcheck_call *cb)
 		if (cb->xflags & F_BURST) {
 			if (info->cfg.burst < cost_to_bytes(info->cfg.avg))
 				xtables_error(PARAMETER_PROBLEM,
-					"burst cannot be smaller than %lub", cost_to_bytes(info->cfg.avg));
+					"burst cannot be smaller than %"PRIu64"b", cost_to_bytes(info->cfg.avg));
 
 			burst = info->cfg.burst;
 			burst /= cost_to_bytes(info->cfg.avg);
-- 
2.21.0


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

* Re: [PATCH iptables] netfilter: hashlimit: prefer PRIu64 to avoid warnings on 32bit platforms
  2019-09-10 21:08 [PATCH iptables] netfilter: hashlimit: prefer PRIu64 to avoid warnings on 32bit platforms Florian Westphal
@ 2019-09-11 17:21 ` Pablo Neira Ayuso
  0 siblings, 0 replies; 2+ messages in thread
From: Pablo Neira Ayuso @ 2019-09-11 17:21 UTC (permalink / raw)
  To: Florian Westphal; +Cc: netfilter-devel, Duncan Roe

On Tue, Sep 10, 2019 at 11:08:20PM +0200, Florian Westphal wrote:
> From: Duncan Roe <duncan_roe@optusnet.com.au>
> 
> I found this patch attached to an older BZ, apply this finally...

LGTM.

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

end of thread, other threads:[~2019-09-11 17:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-10 21:08 [PATCH iptables] netfilter: hashlimit: prefer PRIu64 to avoid warnings on 32bit platforms Florian Westphal
2019-09-11 17:21 ` Pablo Neira Ayuso

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.