2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

in6addr_any and in6addr_loopback should be "const"

This commit is contained in:
Mark Andrews
1999-10-25 16:33:13 +00:00
parent 0f0ed7ea47
commit 42c479991f
2 changed files with 4 additions and 4 deletions

View File

@@ -17,5 +17,5 @@
#include <isc/ipv6.h>
struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;