summaryrefslogtreecommitdiff
path: root/sys/netinet6/nd6.h
diff options
context:
space:
mode:
authorAlexander Bluhm <bluhm@cvs.openbsd.org>2013-07-01 14:22:21 +0000
committerAlexander Bluhm <bluhm@cvs.openbsd.org>2013-07-01 14:22:21 +0000
commitaaea1824222602172b6be35c07e69f787874fe18 (patch)
treeefb72381ea5c87a4e707c8737499b593572dfcb9 /sys/netinet6/nd6.h
parent8cae36a25d4192d6fe5b5e7536a7368f9b46e164 (diff)
Do not access queue fields directly, use FOREACH() macro instead.
No binary change. OK mikeb@ mpi@
Diffstat (limited to 'sys/netinet6/nd6.h')
-rw-r--r--sys/netinet6/nd6.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/netinet6/nd6.h b/sys/netinet6/nd6.h
index 310347d3c95..8825557dab5 100644
--- a/sys/netinet6/nd6.h
+++ b/sys/netinet6/nd6.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: nd6.h,v 1.30 2013/03/11 14:08:04 mpi Exp $ */
+/* $OpenBSD: nd6.h,v 1.31 2013/07/01 14:22:20 bluhm Exp $ */
/* $KAME: nd6.h,v 1.95 2002/06/08 11:31:06 itojun Exp $ */
/*
@@ -270,8 +270,6 @@ struct nd_prefix {
int ndpr_refcnt; /* reference counter from addresses */
};
-#define ndpr_next ndpr_entry.le_next
-
#define ndpr_raf ndpr_flags
#define ndpr_raf_onlink ndpr_flags.onlink
#define ndpr_raf_auto ndpr_flags.autonomous
@@ -305,7 +303,6 @@ struct inet6_ndpr_msghdr {
struct nd_pfxrouter {
LIST_ENTRY(nd_pfxrouter) pfr_entry;
-#define pfr_next pfr_entry.le_next
struct nd_defrouter *router;
};