diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-10-29 15:52:50 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-10-29 15:52:50 -0400 |
commit | 5b095d98928fdb9e3b75be20a54b7a6cbf6ca9ad (patch) | |
tree | b6caa0cdbaac016447a790881ad4a6c5dfce6900 /net/xfrm/xfrm_state.c | |
parent | 4b7a4274ca63dadd9c4f17fc953f3a5d19855c4c (diff) |
net: replace %p6 with %pI6
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/xfrm/xfrm_state.c')
-rw-r--r-- | net/xfrm/xfrm_state.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c index 7944861fb9bf..304eca4ac970 100644 --- a/net/xfrm/xfrm_state.c +++ b/net/xfrm/xfrm_state.c | |||
@@ -2115,7 +2115,7 @@ static void xfrm_audit_helper_sainfo(struct xfrm_state *x, | |||
2115 | NIPQUAD(x->id.daddr.a4)); | 2115 | NIPQUAD(x->id.daddr.a4)); |
2116 | break; | 2116 | break; |
2117 | case AF_INET6: | 2117 | case AF_INET6: |
2118 | audit_log_format(audit_buf, " src=%p6 dst=%p6", | 2118 | audit_log_format(audit_buf, " src=%pI6 dst=%pI6", |
2119 | x->props.saddr.a6, x->id.daddr.a6); | 2119 | x->props.saddr.a6, x->id.daddr.a6); |
2120 | break; | 2120 | break; |
2121 | } | 2121 | } |
@@ -2140,7 +2140,7 @@ static void xfrm_audit_helper_pktinfo(struct sk_buff *skb, u16 family, | |||
2140 | case AF_INET6: | 2140 | case AF_INET6: |
2141 | iph6 = ipv6_hdr(skb); | 2141 | iph6 = ipv6_hdr(skb); |
2142 | audit_log_format(audit_buf, | 2142 | audit_log_format(audit_buf, |
2143 | " src=%p6 dst=%p6 flowlbl=0x%x%02x%02x", | 2143 | " src=%pI6 dst=%pI6 flowlbl=0x%x%02x%02x", |
2144 | &iph6->saddr,&iph6->daddr, | 2144 | &iph6->saddr,&iph6->daddr, |
2145 | iph6->flow_lbl[0] & 0x0f, | 2145 | iph6->flow_lbl[0] & 0x0f, |
2146 | iph6->flow_lbl[1], | 2146 | iph6->flow_lbl[1], |