diff options
author | bluhm <> | 2014-08-31 19:20:44 +0000 |
---|---|---|
committer | bluhm <> | 2014-08-31 19:20:44 +0000 |
commit | 306fc7823dc8064742f82e15e8fbf1e49eefdf4a (patch) | |
tree | 0d0cbfb5e2d032360721214bbad841324998453e | |
parent | 42e8e4472ac4b00c2a0578f02c0ee682e9feb71a (diff) | |
download | openbsd-306fc7823dc8064742f82e15e8fbf1e49eefdf4a.tar.gz openbsd-306fc7823dc8064742f82e15e8fbf1e49eefdf4a.tar.bz2 openbsd-306fc7823dc8064742f82e15e8fbf1e49eefdf4a.zip |
Make the in6addr constant declarations and definitions consistent
in kernel and user land.
OK florian@ mpi@
-rw-r--r-- | src/lib/libc/net/vars6.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libc/net/vars6.c b/src/lib/libc/net/vars6.c index a22d49d047..a12932a26e 100644 --- a/src/lib/libc/net/vars6.c +++ b/src/lib/libc/net/vars6.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: vars6.c,v 1.2 2003/05/10 10:56:47 jmc Exp $ */ | 1 | /* $OpenBSD: vars6.c,v 1.3 2014/08/31 19:20:44 bluhm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. | 4 | * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
@@ -37,6 +37,6 @@ | |||
37 | */ | 37 | */ |
38 | const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT; | 38 | const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT; |
39 | const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT; | 39 | const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT; |
40 | const struct in6_addr in6addr_nodelocal_allnodes = IN6ADDR_NODELOCAL_ALLNODES_INIT; | 40 | const struct in6_addr in6addr_intfacelocal_allnodes = IN6ADDR_INTFACELOCAL_ALLNODES_INIT; |
41 | const struct in6_addr in6addr_linklocal_allnodes = IN6ADDR_LINKLOCAL_ALLNODES_INIT; | 41 | const struct in6_addr in6addr_linklocal_allnodes = IN6ADDR_LINKLOCAL_ALLNODES_INIT; |
42 | 42 | const struct in6_addr in6addr_linklocal_allrouters = IN6ADDR_LINKLOCAL_ALLROUTERS_INIT; | |