diff options
author | Jake Burkholder <jake@FreeBSD.org> | 2000-05-26 02:09:24 +0000 |
---|---|---|
committer | Jake Burkholder <jake@FreeBSD.org> | 2000-05-26 02:09:24 +0000 |
commit | e39756439c7255bc16ba14b7b991cb01ba1c93bd (patch) | |
tree | 112dfed9c5841280f457e0dca97e8de49e04ecd9 /sys/net/if_vlan_var.h | |
parent | 13c6acf19de074f64f9ff031a2e5e660c7957fd2 (diff) |
Back out the previous change to the queue(3) interface.
It was not discussed and should probably not happen.
Requested by: msmith and others
Notes
Notes:
svn path=/head/; revision=60938
Diffstat (limited to 'sys/net/if_vlan_var.h')
-rw-r--r-- | sys/net/if_vlan_var.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_vlan_var.h b/sys/net/if_vlan_var.h index 2cbcc21e40d3..8fbe10ca1ac9 100644 --- a/sys/net/if_vlan_var.h +++ b/sys/net/if_vlan_var.h @@ -35,7 +35,7 @@ #ifdef _KERNEL struct vlan_mc_entry { struct ether_addr mc_addr; - SLIST_ENTRY(struct vlan_mc_entry) mc_entries; + SLIST_ENTRY(vlan_mc_entry) mc_entries; }; struct ifvlan { @@ -46,7 +46,7 @@ struct ifvlan { u_int16_t ifvm_proto; /* encapsulation ethertype */ u_int16_t ifvm_tag; /* tag to apply on packets leaving if */ } ifv_mib; - SLIST_HEAD(__vlan_mchead, struct vlan_mc_entry) vlan_mc_listhead; + SLIST_HEAD(__vlan_mchead, vlan_mc_entry) vlan_mc_listhead; }; #define ifv_if ifv_ac.ac_if #define ifv_tag ifv_mib.ifvm_tag |