diff options
| author | Jake Burkholder <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
|---|---|---|
| committer | Jake Burkholder <jake@FreeBSD.org> | 2000-05-23 20:41:01 +0000 |
| commit | 740a1973a62eaa8e1dc23e22f84dacb3346d303a (patch) | |
| tree | acf054a865eef37380f5ac3d3c07766b5bb234b0 /sys/netinet/if_ether.c | |
| parent | b4183771fd8ab7a5946fd38df04c1e24b1268bea (diff) | |
Notes
Diffstat (limited to 'sys/netinet/if_ether.c')
| -rw-r--r-- | sys/netinet/if_ether.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index 1125455c384c..3eac14a0c120 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -87,14 +87,14 @@ SYSCTL_INT(_net_link_ether_inet, OID_AUTO, host_down_time, CTLFLAG_RW, #define rt_expire rt_rmx.rmx_expire struct llinfo_arp { - LIST_ENTRY(llinfo_arp) la_le; + LIST_ENTRY(struct llinfo_arp) la_le; struct rtentry *la_rt; struct mbuf *la_hold; /* last packet until resolved/timeout */ long la_asked; /* last time we QUERIED for this addr */ #define la_timer la_rt->rt_rmx.rmx_expire /* deletion time in seconds */ }; -static LIST_HEAD(, llinfo_arp) llinfo_arp; +static LIST_HEAD(, struct llinfo_arp) llinfo_arp; struct ifqueue arpintrq = {0, 0, 0, 50}; static int arp_inuse, arp_allocated; |
