diff options
author | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2010-01-12 06:47:26 +0000 |
---|---|---|
committer | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2010-01-12 06:47:26 +0000 |
commit | 070bad5ce9048e76a30dc2e4b95e3a603418b4b5 (patch) | |
tree | c9bfc68505fdda379bbe5a863374e843121334bc /sys/net/if_ethersubr.c | |
parent | 0863b1ebf1693266c2641a0b83f9f5091ce04a48 (diff) |
After calling pipex_pppoe_input(), we must goto done to restore the spl.
ok mcbride@
Diffstat (limited to 'sys/net/if_ethersubr.c')
-rw-r--r-- | sys/net/if_ethersubr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c index 39309e025a8..2a7b8e07524 100644 --- a/sys/net/if_ethersubr.c +++ b/sys/net/if_ethersubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ethersubr.c,v 1.138 2010/01/12 03:41:29 deraadt Exp $ */ +/* $OpenBSD: if_ethersubr.c,v 1.139 2010/01/12 06:47:25 yasuoka Exp $ */ /* $NetBSD: if_ethersubr.c,v 1.19 1996/05/07 02:40:30 thorpej Exp $ */ /* @@ -768,7 +768,7 @@ decapsulate: if ((session = pipex_pppoe_lookup_session(m)) != NULL) { pipex_pppoe_input(m, session); - return; + goto done; } } #endif |