mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix error in rev. 1.68. The intention was to break out the switch(){},
but actually exited from the for(){} loop. This fixes the PPPIOCSCOMPRESS
ioctl.
PR: kern/101333
Submitted by: Igor Popov <igorpopov newmail.ru>
This commit is contained in:
parent
d0c8105042
commit
2d479ae19b
1 changed files with 1 additions and 1 deletions
|
|
@ -543,7 +543,7 @@ pppioctl(sc, cmd, data, flag, td)
|
|||
sc->sc_flags &= ~SC_DECOMP_RUN;
|
||||
splx(s);
|
||||
}
|
||||
break;
|
||||
return (error);
|
||||
}
|
||||
if (sc->sc_flags & SC_DEBUG)
|
||||
if_printf(PPP2IFP(sc), "no compressor for [%x %x %x], %x\n",
|
||||
|
|
|
|||
Loading…
Reference in a new issue