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 PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sat, 8 Jan 2022 12:46:50 -0800 From: Stephen Hemminger <stephen@...workplumber.org> To: netdev@...r.kernel.org Cc: Stephen Hemminger <sthemmin@...rosoft.com>, Stephen Hemminger <stephen@...workplumber.org> Subject: [PATCH iproute2-next 11/11] tunnel: fix clang warning To fix clang warning about passing non-format string split the print into two calls. Signed-off-by: Stephen Hemminger <stephen@...workplumber.org> --- ip/tunnel.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ip/tunnel.c b/ip/tunnel.c index 88585cf3177b..9d1a745d9d2d 100644 --- a/ip/tunnel.c +++ b/ip/tunnel.c @@ -301,10 +301,8 @@ void tnl_print_endpoint(const char *name, const struct rtattr *rta, int family) if (is_json_context()) { print_string(PRINT_JSON, name, NULL, value); } else { - SPRINT_BUF(b1); - - snprintf(b1, sizeof(b1), "%s %%s ", name); - print_string(PRINT_FP, NULL, b1, value); + print_string(PRINT_FP, NULL, "%s ", name); + print_string(PRINT_FP, NULL, "%s ",value); } } -- 2.30.2
Powered by blists - more mailing lists