diff options
author | Marco Pfatschbacher <mpf@cvs.openbsd.org> | 2007-11-18 12:51:49 +0000 |
---|---|---|
committer | Marco Pfatschbacher <mpf@cvs.openbsd.org> | 2007-11-18 12:51:49 +0000 |
commit | 646b08167eea1d425c76dacc8d62033c479930f6 (patch) | |
tree | 36618f59e2c0e4c74728587c17f8b0deb382f598 /sys/altq | |
parent | 9232e3e0a24a4dbac8d4d99d790fae7c3606051e (diff) |
Sync struct ifaltq to match struct ifqueue.
I wonder why 64-bit archs have not been bitten by this.
OK mcbride@, henning@
Diffstat (limited to 'sys/altq')
-rw-r--r-- | sys/altq/if_altq.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/altq/if_altq.h b/sys/altq/if_altq.h index 79494208986..c83f0a8578b 100644 --- a/sys/altq/if_altq.h +++ b/sys/altq/if_altq.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_altq.h,v 1.10 2005/10/17 08:43:35 henning Exp $ */ +/* $OpenBSD: if_altq.h,v 1.11 2007/11/18 12:51:48 mpf Exp $ */ /* $KAME: if_altq.h,v 1.6 2001/01/29 19:59:09 itojun Exp $ */ /* @@ -47,7 +47,7 @@ struct ifaltq { int ifq_len; int ifq_maxlen; int ifq_drops; - int ifq_congestion; + struct timeout *ifq_congestion; /* alternate queueing related fields */ int altq_type; /* discipline type */ |