summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorbluhm <bluhm@openbsd.org>2014-08-31 19:20:44 +0000
committerbluhm <bluhm@openbsd.org>2014-08-31 19:20:44 +0000
commit8ad7fb443efc9f682759a569dd4c6dc160bb4073 (patch)
tree80fde03d71c30753acd0b804cbe918deedc03af9 /lib
parentBackport @file support from binutils-2.17 (diff)
downloadwireguard-openbsd-8ad7fb443efc9f682759a569dd4c6dc160bb4073.tar.xz
wireguard-openbsd-8ad7fb443efc9f682759a569dd4c6dc160bb4073.zip
Make the in6addr constant declarations and definitions consistent
in kernel and user land. OK florian@ mpi@
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/net/vars6.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/net/vars6.c b/lib/libc/net/vars6.c
index a22d49d047f..a12932a26ed 100644
--- a/lib/libc/net/vars6.c
+++ b/lib/libc/net/vars6.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vars6.c,v 1.2 2003/05/10 10:56:47 jmc Exp $ */
+/* $OpenBSD: vars6.c,v 1.3 2014/08/31 19:20:44 bluhm Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -37,6 +37,6 @@
*/
const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
-const struct in6_addr in6addr_nodelocal_allnodes = IN6ADDR_NODELOCAL_ALLNODES_INIT;
+const struct in6_addr in6addr_intfacelocal_allnodes = IN6ADDR_INTFACELOCAL_ALLNODES_INIT;
const struct in6_addr in6addr_linklocal_allnodes = IN6ADDR_LINKLOCAL_ALLNODES_INIT;
-
+const struct in6_addr in6addr_linklocal_allrouters = IN6ADDR_LINKLOCAL_ALLROUTERS_INIT;