diff options
| author | 2010-01-12 06:47:25 +0000 | |
|---|---|---|
| committer | 2010-01-12 06:47:25 +0000 | |
| commit | bb292b9b4ecfb24bacd357a00e436769e7f41705 (patch) | |
| tree | 5fe9c9cf3eeb5cef70bbfcfd213fae056da1382a /sys/net/if_ethersubr.c | |
| parent | Add TCP/UDP checksum display for v6 and clean up the checksum (diff) | |
| download | wireguard-openbsd-bb292b9b4ecfb24bacd357a00e436769e7f41705.tar.xz wireguard-openbsd-bb292b9b4ecfb24bacd357a00e436769e7f41705.zip | |
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 |
