diff options
author | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2012-05-05 14:48:52 +0000 |
---|---|---|
committer | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2012-05-05 14:48:52 +0000 |
commit | b23ad7ac522f2eb98bb5c569ca9c4e2df443759c (patch) | |
tree | 642cf81428bdcc30302720ac23389bb1d8c1ecc9 /sys/net/pipex.c | |
parent | 060b3ca464a835fc27d659be01cab7558adcf435 (diff) |
pipex_ip6_input() called IF_DROP() with incorrect queue.
diff from blambert
Diffstat (limited to 'sys/net/pipex.c')
-rw-r--r-- | sys/net/pipex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/pipex.c b/sys/net/pipex.c index 66769617594..ab15ec38883 100644 --- a/sys/net/pipex.c +++ b/sys/net/pipex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pipex.c,v 1.28 2012/04/22 15:27:24 yasuoka Exp $ */ +/* $OpenBSD: pipex.c,v 1.29 2012/05/05 14:48:51 yasuoka Exp $ */ /*- * Copyright (c) 2009 Internet Initiative Japan Inc. @@ -1235,7 +1235,7 @@ pipex_ip6_input(struct mbuf *m0, struct pipex_session *session) s = splnet(); if (IF_QFULL(&ip6intrq)) { - IF_DROP(&ipintrq); + IF_DROP(&ip6intrq); ifp->if_collisions++; splx(s); goto drop; |