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:
Maxim Konovalov 2003-03-27 12:52:57 +00:00
parent cd6d3a03c8
commit 7102717ac1

View File

@ -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++;