summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhenning <henning@openbsd.org>2004-04-17 04:19:33 +0000
committerhenning <henning@openbsd.org>2004-04-17 04:19:33 +0000
commitdcded7545468f1e74ff12db44a115260b788f9fd (patch)
tree2e55cf128c177ce708956d93145857380a2112d1
parentwhen the input queue congestion flag is set stop evaluating the ruleset (diff)
downloadwireguard-openbsd-dcded7545468f1e74ff12db44a115260b788f9fd.tar.xz
wireguard-openbsd-dcded7545468f1e74ff12db44a115260b788f9fd.zip
unbreak
-rw-r--r--sys/net/if_atmsubr.c4
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);
}