diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2010-08-08 21:00:32 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2010-08-08 21:00:32 +0000 |
commit | 15daa0713cadfe1d2c7f4a2a575545cedba90b14 (patch) | |
tree | 5d3f6e82c525b7751be41a880b967bdccc154d2c /sys/dev/ic/re.c | |
parent | 1899ef0ca99b8b5f8a9ea2c423b780bb451a1aa1 (diff) |
Fix re_stop() invocation (normally #ifdef'd out) to use new parameter
list.
ok deraadt@
Diffstat (limited to 'sys/dev/ic/re.c')
-rw-r--r-- | sys/dev/ic/re.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/re.c b/sys/dev/ic/re.c index 0c15ff612f6..6f6f7f20df6 100644 --- a/sys/dev/ic/re.c +++ b/sys/dev/ic/re.c @@ -1,4 +1,4 @@ -/* $OpenBSD: re.c,v 1.126 2010/08/07 23:56:42 naddy Exp $ */ +/* $OpenBSD: re.c,v 1.127 2010/08/08 21:00:31 krw Exp $ */ /* $FreeBSD: if_re.c,v 1.31 2004/09/04 07:54:05 ru Exp $ */ /* * Copyright (c) 1997, 1998-2003 @@ -773,7 +773,7 @@ done: sc->rl_testmode = 0; sc->rl_flags &= ~RL_FLAG_LINK; ifp->if_flags &= ~IFF_PROMISC; - re_stop(ifp, 1); + re_stop(ifp); if (m0 != NULL) m_freem(m0); DPRINTF(("leaving re_diag\n")); |