Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/netisdn Reduce the "unknown protocol discriminator" mess...



details:   https://anonhg.NetBSD.org/src/rev/a1a9c8e33729
branches:  trunk
changeset: 522268:a1a9c8e33729
user:      drochner <drochner%NetBSD.org@localhost>
date:      Thu Feb 14 16:17:05 2002 +0000

description:
Reduce the "unknown protocol discriminator" message from "error" to
"information". On my mixed Euro-ISDN/1TR6 line I get fooded otherwise.

diffstat:

 sys/netisdn/i4b_q931.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (30 lines):

diff -r 499f045e9f28 -r a1a9c8e33729 sys/netisdn/i4b_q931.c
--- a/sys/netisdn/i4b_q931.c    Thu Feb 14 15:28:31 2002 +0000
+++ b/sys/netisdn/i4b_q931.c    Thu Feb 14 16:17:05 2002 +0000
@@ -27,7 +27,7 @@
  *     i4b_q931.c - Q931 received messages handling
  *     --------------------------------------------
  *
- *     $Id: i4b_q931.c,v 1.5 2001/11/13 01:06:23 lukem Exp $ 
+ *     $Id: i4b_q931.c,v 1.6 2002/02/14 16:17:05 drochner Exp $ 
  *
  * $FreeBSD$
  *
@@ -36,7 +36,7 @@
  *---------------------------------------------------------------------------*/
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: i4b_q931.c,v 1.5 2001/11/13 01:06:23 lukem Exp $");
+__KERNEL_RCSID(0, "$NetBSD: i4b_q931.c,v 1.6 2002/02/14 16:17:05 drochner Exp $");
 
 #ifdef __FreeBSD__
 #include "i4bq931.h"
@@ -138,7 +138,7 @@
 
                if(*msg_ptr != protoflag)
                {
-                       NDBGL3(L3_P_ERR, "unknown protocol discriminator 0x%x!", *msg_ptr);
+                       NDBGL3(L3_P_MSG, "unknown protocol discriminator 0x%x!", *msg_ptr);
                        protoflag = *msg_ptr;
                }                       
                return;



Home | Main Index | Thread Index | Old Index