diff options
author | julian <julian@FreeBSD.org> | 1996-08-26 23:17:17 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 1996-08-26 23:17:17 +0000 |
commit | ac4035b489d727d3b8fe4c8d428b63ae1f04a0d2 (patch) | |
tree | 2c5fb9c1b96de75461858d2ed5f55f0ec3f37c87 /sys/net | |
parent | 012c55b70ab693218508a4a50c480eed2a817607 (diff) | |
download | FreeBSD-src-ac4035b489d727d3b8fe4c8d428b63ae1f04a0d2.zip FreeBSD-src-ac4035b489d727d3b8fe4c8d428b63ae1f04a0d2.tar.gz |
correct a field comment that someone must have accidentally spammed
as it's still used for what the original BSD4.4 comment says it's for.
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if.h b/sys/net/if.h index c5b303a..056b711 100644 --- a/sys/net/if.h +++ b/sys/net/if.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)if.h 8.1 (Berkeley) 6/10/93 - * $Id: if.h,v 1.32 1996/07/30 19:17:00 wollman Exp $ + * $Id: if.h,v 1.33 1996/08/04 10:54:12 phk Exp $ */ #ifndef _NET_IF_H_ @@ -311,7 +311,7 @@ struct ifaddr { void (*ifa_rtrequest) /* check or clean routes (+ or -)'d */ __P((int, struct rtentry *, struct sockaddr *)); u_short ifa_flags; /* mostly rt_flags for cloning */ - short ifa_refcnt; /* extra to malloc for link info */ + short ifa_refcnt; /* references to this structure */ int ifa_metric; /* cost of going out this interface */ #ifdef notdef struct rtentry *ifa_rt; /* XXXX for ROUTETOIF ????? */ |