From 3a2ce6a14e3e302c3fdca2ff99143cfd06b145e6 Mon Sep 17 00:00:00 2001 From: hasso Date: Fri, 8 Apr 2005 01:30:51 +0000 Subject: * 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. --- lib/prefix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/prefix.c') diff --git a/lib/prefix.c b/lib/prefix.c index 56539fc9..2e594aa0 100644 --- a/lib/prefix.c +++ b/lib/prefix.c @@ -738,11 +738,11 @@ netmask_str2prefix_str (const char *net_str, const char *mask_str, #ifdef HAVE_IPV6 /* Utility function for making IPv6 address string. */ const char * -inet6_ntoa (struct in6_addr *addr) +inet6_ntoa (struct in6_addr addr) { static char buf[INET6_ADDRSTRLEN]; - inet_ntop (AF_INET6, addr, buf, INET6_ADDRSTRLEN); + inet_ntop (AF_INET6, &addr, buf, INET6_ADDRSTRLEN); return buf; } #endif /* HAVE_IPV6 */ -- cgit v1.2.1