* prefix.[hc]: Pass argument to the inet6_ntoa by value making it more
inet_ntoa alike.
* ripngd.[hc], ripng_interface.c, ripng_peer.c: inet6_ntoa() takes
argument now by value.
diff --git a/ripngd/ripng_interface.c b/ripngd/ripng_interface.c
index d2fa3d6..52a1fe2 100644
--- a/ripngd/ripng_interface.c
+++ b/ripngd/ripng_interface.c
@@ -437,7 +437,7 @@
{
if (IS_RIPNG_DEBUG_ZEBRA)
zlog_debug ("RIPng connected address %s/%d add",
- inet6_ntoa(&p->u.prefix6),
+ inet6_ntoa(p->u.prefix6),
p->prefixlen);
/* Check is this prefix needs to be redistributed. */