diff options
author | Jared Yanovich <jaredy@cvs.openbsd.org> | 2004-10-11 22:27:55 +0000 |
---|---|---|
committer | Jared Yanovich <jaredy@cvs.openbsd.org> | 2004-10-11 22:27:55 +0000 |
commit | 86b8af5b04b4e746ede430a1e71bf7ebb95cc9fd (patch) | |
tree | e8335e196fdadcc86dd6a68aa3618fff7e3d4890 /share/man | |
parent | de01f140ec4b10820232dd28bfda0a52a3768a36 (diff) |
sync to recent ifgroup changes
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man4/netintro.4 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/share/man/man4/netintro.4 b/share/man/man4/netintro.4 index 6e64c5ec561..20d320a62a2 100644 --- a/share/man/man4/netintro.4 +++ b/share/man/man4/netintro.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: netintro.4,v 1.28 2004/08/21 21:58:15 jaredy Exp $ +.\" $OpenBSD: netintro.4,v 1.29 2004/10/11 22:27:54 jaredy Exp $ .\" $NetBSD: netintro.4,v 1.4 1995/10/19 08:03:40 jtc Exp $ .\" .\" Copyright (c) 1983, 1990, 1991, 1993 @@ -448,12 +448,16 @@ The .Vt ifgroupreq structure is as follows: .Bd -literal +struct ifg_req { + char ifgrq_group[IFNAMSIZ]; +}; + struct ifgroupreq { char ifgr_name[IFNAMSIZ]; u_int ifgr_len; union { char ifgru_group[IFNAMSIZ]; - struct ifgroup *ifgru_groups; + struct ifg_req *ifgru_groups; } ifgr_ifgru; #define ifgr_group ifgr_ifgru.ifgru_group #define ifgr_groups ifgr_ifgru.ifgru_groups |