diff options
author | hasso <hasso> | 2005-04-05 14:36:49 +0000 |
---|---|---|
committer | hasso <hasso> | 2005-04-05 14:36:49 +0000 |
commit | b5ab9d2a6d79de4ed243042c330e8b9b5e9f79f3 (patch) | |
tree | ff94f2c0b5983b0652428aaed49d1cfcecaac3bb /ripngd/ripng_interface.c | |
parent | d25640dce0ed0fa9f80c82e27f87fa9f2114e68c (diff) | |
download | quagga.pre.listloop.cleanup.tar.bz2 quagga.pre.listloop.cleanup.tar.xz |
* lib/prefix.[hc]: inet6_ntoa utility function copied fromquagga.pre.listloop.cleanup
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_interface.c')
-rw-r--r-- | ripngd/ripng_interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripngd/ripng_interface.c b/ripngd/ripng_interface.c index 477bfd7f..6d5d468c 100644 --- a/ripngd/ripng_interface.c +++ b/ripngd/ripng_interface.c @@ -441,7 +441,7 @@ ripng_interface_address_add (int command, struct zclient *zclient, { if (IS_RIPNG_DEBUG_ZEBRA) zlog_debug ("RIPng connected address %s/%d add", - inet6_ntop(&p->u.prefix6), + inet6_ntoa(&p->u.prefix6), p->prefixlen); /* Check is this prefix needs to be redistributed. */ |