diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-04-17 04:19:34 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-04-17 04:19:34 +0000 |
commit | e0ca675a956df9412c5f0dfb08128f3cc4926b98 (patch) | |
tree | ceb9b07d02fcb3a22ec03ded6c2d884ff2d68b98 /sys | |
parent | cf3b837b4f2865a0c44b7900357c645e3c6d7ccd (diff) |
unbreak
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/if_atmsubr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_atmsubr.c b/sys/net/if_atmsubr.c index efdc96f0c8d..bf2f0f80edf 100644 --- a/sys/net/if_atmsubr.c +++ b/sys/net/if_atmsubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_atmsubr.c,v 1.23 2004/04/17 00:09:01 henning Exp $ */ +/* $OpenBSD: if_atmsubr.c,v 1.24 2004/04/17 04:19:33 henning Exp $ */ /* * @@ -354,7 +354,7 @@ atm_input(ifp, ah, m, rxhand) } s = splimp(); - IF_INPUT_ENQUEUE(inq); + IF_INPUT_ENQUEUE(inq, m); splx(s); } |