mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
o netisr_queue() returns 1 on success and 0 on failure,
fix a typo (?) in rev. 1.90. PR: kern/50163
This commit is contained in:
parent
cd6d3a03c8
commit
7102717ac1
1 changed files with 1 additions and 1 deletions
|
|
@ -1571,7 +1571,7 @@ ppp_inproc(sc, m)
|
|||
rv = IF_HANDOFF(&sc->sc_inq, m, NULL);
|
||||
else
|
||||
rv = netisr_queue(isr, m);
|
||||
if (rv) {
|
||||
if (!rv) {
|
||||
if (sc->sc_flags & SC_DEBUG)
|
||||
if_printf(ifp, "input queue full\n");
|
||||
ifp->if_iqdrops++;
|
||||
|
|
|
|||
Loading…
Reference in a new issue