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
@ -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…
x
Reference in New Issue
Block a user