Commit a4fbf8415c462208e77251779d80dbc81914cebd
Committed by
David S. Miller
1 parent
3eb14b944f
Exists in
master
and in
39 other branches
net/l2tp/l2tp_debugfs.c: Convert NIPQUAD to %pI4
Signed-off-by: Joe Perches <joe@perches.com> Acked-by: James Chapman <jchapman@katalix.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
net/l2tp/l2tp_debugfs.c
... | ... | @@ -122,8 +122,8 @@ |
122 | 122 | seq_printf(m, "\nTUNNEL %u peer %u", tunnel->tunnel_id, tunnel->peer_tunnel_id); |
123 | 123 | if (tunnel->sock) { |
124 | 124 | struct inet_sock *inet = inet_sk(tunnel->sock); |
125 | - seq_printf(m, " from " NIPQUAD_FMT " to " NIPQUAD_FMT "\n", | |
126 | - NIPQUAD(inet->inet_saddr), NIPQUAD(inet->inet_daddr)); | |
125 | + seq_printf(m, " from %pI4 to %pI4\n", | |
126 | + &inet->inet_saddr, &inet->inet_daddr); | |
127 | 127 | if (tunnel->encap == L2TP_ENCAPTYPE_UDP) |
128 | 128 | seq_printf(m, " source port %hu, dest port %hu\n", |
129 | 129 | ntohs(inet->inet_sport), ntohs(inet->inet_dport)); |