summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>2002-07-02 00:12:24 +0000
committerbrian <brian@FreeBSD.org>2002-07-02 00:12:24 +0000
commitc90db9b98a019d3e885f508def1c15ad103c90d6 (patch)
tree33a2f0244136354eccb23cee4a5d5016154d8dc9 /usr.sbin
parent33e48c9c4e56dfea335f85e13cc2bd5b6c20647e (diff)
downloadFreeBSD-src-c90db9b98a019d3e885f508def1c15ad103c90d6.zip
FreeBSD-src-c90db9b98a019d3e885f508def1c15ad103c90d6.tar.gz
Remove some misleading/wrong diagnostics
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/ppp/ccp.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.sbin/ppp/ccp.c b/usr.sbin/ppp/ccp.c
index cb6f025..03c56b4 100644
--- a/usr.sbin/ppp/ccp.c
+++ b/usr.sbin/ppp/ccp.c
@@ -746,8 +746,6 @@ ccp_LayerPull(struct bundle *b, struct link *l, struct mbuf *bp, u_short *proto)
*/
if (l->ccp.fsm.state == ST_OPENED) {
if (*proto == PROTO_COMPD || *proto == PROTO_ICOMPD) {
- log_Printf(LogDEBUG, "ccp_LayerPull: PROTO_%sCOMPDP -> PROTO_IP\n",
- *proto == PROTO_ICOMPD ? "I" : "");
/* Decompress incoming data */
if (l->ccp.reset_sent != -1)
/* Send another REQ and put the packet in the bit bucket */
@@ -769,12 +767,10 @@ ccp_LayerPull(struct bundle *b, struct link *l, struct mbuf *bp, u_short *proto)
m_freem(bp);
bp = NULL;
} else if (PROTO_COMPRESSIBLE(*proto) && l->ccp.in.state != NULL) {
- log_Printf(LogDEBUG, "ccp_LayerPull: Ignore packet (dict only)\n");
/* Add incoming Network Layer traffic to our dictionary */
(*algorithm[l->ccp.in.algorithm]->i.DictSetup)
(l->ccp.in.state, &l->ccp, *proto, bp);
- } else
- log_Printf(LogDEBUG, "ccp_LayerPull: Ignore packet\n");
+ }
}
return bp;
OpenPOWER on IntegriCloud