diff options
author | hasso <hasso> | 2005-04-05 14:36:49 +0000 |
---|---|---|
committer | hasso <hasso> | 2005-04-05 14:36:49 +0000 |
commit | 5920990fecba7e2430af3cfaa8bcbaed40d0ba1a (patch) | |
tree | d91dd49e4ed2c03cd0c007660232716f11172a56 /ripngd/ripng_peer.c | |
parent | 6a52470660000bb6ddba971dc5c40b3422ab49bc (diff) |
* lib/prefix.[hc]: inet6_ntoa utility function copied from
ripngd/ripngd.c (inet6_ntop).
* ripngd.[hc]: Remove inet6_ntop() and any usage of it. inet6_ntoa()
from lib is used now.
* ripng_interface.c: inet6_ntop() -> inet6_ntoa().
* ripng_peer.c: inet6_ntop() -> inet6_ntoa().
Diffstat (limited to 'ripngd/ripng_peer.c')
-rw-r--r-- | ripngd/ripng_peer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripngd/ripng_peer.c b/ripngd/ripng_peer.c index b9af930c..66282614 100644 --- a/ripngd/ripng_peer.c +++ b/ripngd/ripng_peer.c @@ -197,7 +197,7 @@ ripng_peer_display (struct vty *vty) LIST_LOOP (peer_list, peer, nn) { - vty_out (vty, " %s %s%14s %10d %10d %10d %s%s", inet6_ntop (&peer->addr), + vty_out (vty, " %s %s%14s %10d %10d %10d %s%s", inet6_ntoa (&peer->addr), VTY_NEWLINE, " ", peer->recv_badpackets, peer->recv_badroutes, ZEBRA_RIPNG_DISTANCE_DEFAULT, |