2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-01 15:05:23 +00:00

in6_addr.s6_addr is always an array.

This commit is contained in:
Mark Andrews
1999-10-29 07:13:04 +00:00
parent c7dd70fe1b
commit c9c070991c

View File

@@ -17,7 +17,7 @@
*/ */
#if !defined(lint) && !defined(SABER) #if !defined(lint) && !defined(SABER)
static char rcsid[] = "$Id: confparser.y,v 1.19 1999/10/29 06:05:10 marka Exp $"; static char rcsid[] = "$Id: confparser.y,v 1.20 1999/10/29 07:13:04 marka Exp $";
#endif /* not lint */ #endif /* not lint */
#include <config.h> #include <config.h>
@@ -3723,7 +3723,7 @@ token_to_text(int token, YYSTYPE lval) {
break; break;
case L_IP6ADDR: case L_IP6ADDR:
strcpy(buffer, "UNAVAILABLE-IPV6-ADDRESS"); strcpy(buffer, "UNAVAILABLE-IPV6-ADDRESS");
inet_ntop(AF_INET6, &lval.ip6_addr.s6_addr, inet_ntop(AF_INET6, lval.ip6_addr.s6_addr,
buffer, sizeof buffer); buffer, sizeof buffer);
break; break;
case L_IP4ADDR: case L_IP4ADDR: