net, misc: replace uses of NIP6_FMT with %p6

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Harvey Harrison
2008-10-28 16:10:17 -07:00
committed by David S. Miller
parent 0c6ce78abf
commit fdb46ee752
9 changed files with 39 additions and 55 deletions

View File

@@ -2467,13 +2467,11 @@ static void xfrm_audit_common_policyinfo(struct xfrm_policy *xp,
sel->prefixlen_d);
break;
case AF_INET6:
audit_log_format(audit_buf, " src=" NIP6_FMT,
NIP6(*(struct in6_addr *)sel->saddr.a6));
audit_log_format(audit_buf, " src=%p6", sel->saddr.a6);
if (sel->prefixlen_s != 128)
audit_log_format(audit_buf, " src_prefixlen=%d",
sel->prefixlen_s);
audit_log_format(audit_buf, " dst=" NIP6_FMT,
NIP6(*(struct in6_addr *)sel->daddr.a6));
audit_log_format(audit_buf, " dst=%p6", sel->daddr.a6);
if (sel->prefixlen_d != 128)
audit_log_format(audit_buf, " dst_prefixlen=%d",
sel->prefixlen_d);