summaryrefslogtreecommitdiffstats
path: root/include/net/ip_vs.h
diff options
context:
space:
mode:
authorHarvey Harrison2008-10-31 08:56:49 +0100
committerDavid S. Miller2008-10-31 08:56:49 +0100
commit3685f25de1b0447fff381c420de1e25bd57c9efb (patch)
tree90a5d87c0ced1b27f654606d50a9ff13ded6f862 /include/net/ip_vs.h
parentfs: replace NIPQUAD() (diff)
downloadkernel-qcow2-linux-3685f25de1b0447fff381c420de1e25bd57c9efb.tar.gz
kernel-qcow2-linux-3685f25de1b0447fff381c420de1e25bd57c9efb.tar.xz
kernel-qcow2-linux-3685f25de1b0447fff381c420de1e25bd57c9efb.zip
misc: replace NIPQUAD()
Using NIPQUAD() with NIPQUAD_FMT, %d.%d.%d.%d or %u.%u.%u.%u can be replaced with %pI4 Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ip_vs.h')
-rw-r--r--include/net/ip_vs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h
index af48cada561e..fc63353779f0 100644
--- a/include/net/ip_vs.h
+++ b/include/net/ip_vs.h
@@ -91,8 +91,8 @@ static inline const char *ip_vs_dbg_addr(int af, char *buf, size_t buf_len,
&addr->in6) + 1;
else
#endif
- len = snprintf(&buf[*idx], buf_len - *idx, NIPQUAD_FMT,
- NIPQUAD(addr->ip)) + 1;
+ len = snprintf(&buf[*idx], buf_len - *idx, "%pI4",
+ &addr->ip) + 1;
*idx += len;
BUG_ON(*idx > buf_len + 1);