summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2004-10-14 21:28:16 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2004-10-14 21:28:16 +0000
commit7e463ef4a38218dc2294d3b7cbf133f71b9333c1 (patch)
tree9f080a7d8ad57ac8d717b2470e90eed393435d0c /sys
parent42a899b5d25629c2f58aeb457b59a87c11d0e403 (diff)
avoid stupid commons
Diffstat (limited to 'sys')
-rw-r--r--sys/net/if.c3
-rw-r--r--sys/net/if.h4
2 files changed, 3 insertions, 4 deletions
diff --git a/sys/net/if.c b/sys/net/if.c
index 48392472db2..cae31adb420 100644
--- a/sys/net/if.c
+++ b/sys/net/if.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if.c,v 1.92 2004/10/11 10:13:49 henning Exp $ */
+/* $OpenBSD: if.c,v 1.93 2004/10/14 21:28:15 mickey Exp $ */
/* $NetBSD: if.c,v 1.35 1996/05/07 05:26:04 thorpej Exp $ */
/*
@@ -132,6 +132,7 @@ struct if_clone *if_clone_lookup(const char *, int *);
void if_congestion_clear(void *);
+TAILQ_HEAD(, ifg_group) ifg_head;
LIST_HEAD(, if_clone) if_cloners = LIST_HEAD_INITIALIZER(if_cloners);
int if_cloners_count;
diff --git a/sys/net/if.h b/sys/net/if.h
index f81872a0cc5..25057e55f56 100644
--- a/sys/net/if.h
+++ b/sys/net/if.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if.h,v 1.57 2004/10/11 10:13:49 henning Exp $ */
+/* $OpenBSD: if.h,v 1.58 2004/10/14 21:28:15 mickey Exp $ */
/* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */
/*
@@ -400,8 +400,6 @@ struct if_announcemsghdr {
/*
* interface groups
*/
-TAILQ_HEAD(ifg_head, ifg_group) ifg_head;
-
struct ifg_group {
char ifg_group[IFNAMSIZ];
u_int ifg_refcnt;