diff options
author | 1999-03-13 19:06:16 +0000 | |
---|---|---|
committer | 1999-03-13 19:06:16 +0000 | |
commit | 2d8131eb9cf34c360741a8af47a1be0e50d06b01 (patch) | |
tree | 93c7d4606fc933d471c219f92b3916dc9b676e6d | |
parent | Fix a few bugs (e.g. snake used to miss turns); use usleep() so display (diff) | |
download | wireguard-openbsd-2d8131eb9cf34c360741a8af47a1be0e50d06b01.tar.xz wireguard-openbsd-2d8131eb9cf34c360741a8af47a1be0e50d06b01.zip |
make ifa_refcnt a u_int; andrewb@demon.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 934e7e54443..3f6a8e3e4e0 100644 --- a/sys/net/if.h +++ b/sys/net/if.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if.h,v 1.10 1999/02/26 17:01:31 jason Exp $ */ +/* $OpenBSD: if.h,v 1.11 1999/03/13 19:06:16 deraadt Exp $ */ /* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */ /* @@ -238,7 +238,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; /* count of references */ + u_int ifa_refcnt; /* count of references */ int ifa_metric; /* cost of going out this interface */ }; #define IFA_ROUTE RTF_UP /* route installed */ |