[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1396280619-31152-4-git-send-email-standby24x7@gmail.com>
Date: Tue, 1 Apr 2014 00:43:39 +0900
From: Masanari Iida <standby24x7@...il.com>
To: netdev@...r.kernel.org, pablo@...filter.org, kaber@...sh.net,
kadlec@...ckhole.kfki.hu, netfilter-devel@...r.kernel.org,
linux-kernel@...r.kernel.org
Cc: Masanari Iida <standby24x7@...il.com>
Subject: [PATCH 5/5] netfilter: Fix format string mismatch in nf_conntrack_sip_init()
Fix format string mismatch in nf_conntrack_sip_init().
Signed-off-by: Masanari Iida <standby24x7@...il.com>
---
net/netfilter/nf_conntrack_sip.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/netfilter/nf_conntrack_sip.c b/net/netfilter/nf_conntrack_sip.c
index 4c3ba1c..ef82019 100644
--- a/net/netfilter/nf_conntrack_sip.c
+++ b/net/netfilter/nf_conntrack_sip.c
@@ -1659,7 +1659,7 @@ static int __init nf_conntrack_sip_init(void)
if (ports[i] == SIP_PORT)
sprintf(sip[i][j].name, "sip");
else
- sprintf(sip[i][j].name, "sip-%u", i);
+ sprintf(sip[i][j].name, "sip-%d", i);
pr_debug("port #%u: %u\n", i, ports[i]);
--
1.9.1.352.gd393d14
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists