Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Mar 2003 09:20:14 -0800 (PST)
From:      Maxim Konovalov <maxim@macomnet.ru>
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: kern/50163: debug screen appear when dial-in user try to login
Message-ID:  <200303231720.h2NHKEs7033088@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/50163; it has been noted by GNATS.

From: Maxim Konovalov <maxim@macomnet.ru>
To: Ilia Starkov <star0413@ns4.cpcpipe.ru>
Cc: bug-followup@freebsd.org
Subject: Re: kern/50163: debug screen appear when dial-in user try to login
Date: Sun, 23 Mar 2003 20:18:58 +0300 (MSK)

 Please try a patch below.
 
 Index: if_ppp.c
 ===================================================================
 RCS file: /home/ncvs/src/sys/net/if_ppp.c,v
 retrieving revision 1.90
 diff -u -r1.90 if_ppp.c
 --- if_ppp.c	4 Mar 2003 23:19:51 -0000	1.90
 +++ if_ppp.c	23 Mar 2003 17:05:28 -0000
 @@ -1571,7 +1571,7 @@
        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++;
 
 %%%
 
 -- 
 Maxim Konovalov, maxim@macomnet.ru, maxim@FreeBSD.org

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200303231720.h2NHKEs7033088>