lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1472267428-810527-1-git-send-email-green@linuxhacker.ru> Date: Fri, 26 Aug 2016 23:10:28 -0400 From: Oleg Drokin <green@...uxhacker.ru> To: Stephen Hemminger <stephen@...workplumber.org>, "David S. Miller" <davem@...emloft.net> Cc: bridge@...ts.linux-foundation.org, netdev@...r.kernel.org, linux-kernel@...r.kernel.org, Oleg Drokin <green@...uxhacker.ru> Subject: [PATCH] bridge: Fix format string for %ul %ul would print an unsigned value and a letter l, likely it was %lu that was meant to print the long int, but in reality the values printed there are just regular signed ints, so just dropping the l altogether. Signed-off-by: Oleg Drokin <green@...uxhacker.ru> --- net/bridge/br_stp_bpdu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/bridge/br_stp_bpdu.c b/net/bridge/br_stp_bpdu.c index 5881fbc..15c4a9c 100644 --- a/net/bridge/br_stp_bpdu.c +++ b/net/bridge/br_stp_bpdu.c @@ -230,7 +230,7 @@ void br_stp_rcv(const struct stp_proto *proto, struct sk_buff *skb, if (net_ratelimit()) br_notice(p->br, "port %u config from %pM" - " (message_age %ul > max_age %ul)\n", + " (message_age %u > max_age %u)\n", p->port_no, eth_hdr(skb)->h_source, bpdu.message_age, bpdu.max_age); -- 2.7.4
Powered by blists - more mailing lists