[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1396280415-31007-1-git-send-email-standby24x7@gmail.com>
Date: Tue, 1 Apr 2014 00:40:15 +0900
From: Masanari Iida <standby24x7@...il.com>
To: netdev@...r.kernel.org, wensong@...ux-vs.org, horms@...ge.net.au,
ja@....bg
Cc: Masanari Iida <standby24x7@...il.com>
Subject: [PATCH 1/5] netfilter: Fix format string mismatch in ip_vs_proto_name()
Fix string mismatch in ip_vs_proto_name()
Signed-off-by: Masanari Iida <standby24x7@...il.com>
---
net/netfilter/ipvs/ip_vs_core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/netfilter/ipvs/ip_vs_core.c b/net/netfilter/ipvs/ip_vs_core.c
index 4f26ee4..d9da8c4 100644
--- a/net/netfilter/ipvs/ip_vs_core.c
+++ b/net/netfilter/ipvs/ip_vs_core.c
@@ -97,7 +97,7 @@ const char *ip_vs_proto_name(unsigned int proto)
return "ICMPv6";
#endif
default:
- sprintf(buf, "IP_%d", proto);
+ sprintf(buf, "IP_%u", proto);
return buf;
}
}
--
1.9.1.352.gd393d14
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists