diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2000-09-20 13:07:26 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2000-09-20 13:07:26 +0000 |
commit | 77cccab60f2b01c1c68981874c3f686c4007cf41 (patch) | |
tree | d56612b473d9d16321d025be577ee1d5a8869ed3 /sys/net | |
parent | 5fb52ef06f55e84930a84afc55941044c4e97872 (diff) |
Since ifa_refcnt was bumped to an int and rt_flags is an int too, bump
ifa_flags to int.
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 c1bfa44e34d..e3d6b878c83 100644 --- a/sys/net/if.h +++ b/sys/net/if.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if.h,v 1.19 2000/08/28 18:30:38 deraadt Exp $ */ +/* $OpenBSD: if.h,v 1.20 2000/09/20 13:07:25 art Exp $ */ /* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */ /* @@ -256,7 +256,7 @@ struct ifaddr { TAILQ_ENTRY(ifaddr) ifa_list; /* list of addresses for interface */ void (*ifa_rtrequest) /* check or clean routes (+ or -)'d */ __P((int, struct rtentry *, struct sockaddr *)); - u_short ifa_flags; /* mostly rt_flags for cloning */ + u_int ifa_flags; /* mostly rt_flags for cloning */ u_int ifa_refcnt; /* count of references */ int ifa_metric; /* cost of going out this interface */ }; |