summaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-03-13 19:06:17 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-03-13 19:06:17 +0000
commit04f965b4f71be67ec5cb904c6f58506e49d3656a (patch)
tree22334264ed6ae6fd7b794abe4c19a179c261c1a9 /sys/net
parent606df7dfe35de43c6dad31da7b4a55bbab43c0e0 (diff)
make ifa_refcnt a u_int; andrewb@demon.net
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/if.h4
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 */