diff options
author | 2009-07-31 09:21:13 +0000 | |
---|---|---|
committer | 2009-07-31 09:21:13 +0000 | |
commit | 0a387abf2308174faeb239539d2194c9ca091d02 (patch) | |
tree | 39eeb849a458092a09ccae53064c4841cfb4fabf | |
parent | bioctl.8 should not try to keep track of all devices which can use it; (diff) | |
download | wireguard-openbsd-0a387abf2308174faeb239539d2194c9ca091d02.tar.xz wireguard-openbsd-0a387abf2308174faeb239539d2194c9ca091d02.zip |
timeout_add -> timeout_add_msec
ok mpf@
-rw-r--r-- | sys/net/trunklacp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/trunklacp.c b/sys/net/trunklacp.c index 38d52bc5d69..070da9ca59b 100644 --- a/sys/net/trunklacp.c +++ b/sys/net/trunklacp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trunklacp.c,v 1.9 2008/12/01 10:40:57 brad Exp $ */ +/* $OpenBSD: trunklacp.c,v 1.10 2009/07/31 09:21:13 blambert Exp $ */ /* $NetBSD: ieee8023ad_lacp.c,v 1.3 2005/12/11 12:24:54 christos Exp $ */ /* $FreeBSD:ieee8023ad_lacp.c,v 1.15 2008/03/16 19:25:30 thompsa Exp $ */ @@ -822,7 +822,7 @@ lacp_suppress_distributing(struct lacp_softc *lsc, struct lacp_aggregator *la) } /* set a timeout for the marker frames */ - timeout_add(&lsc->lsc_transit_callout, LACP_TRANSIT_DELAY * hz / 1000); + timeout_add_msec(&lsc->lsc_transit_callout, LACP_TRANSIT_DELAY); } int |