#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /tcpdump/master/tcpdump/print-ppp.c,v 1.64 2001-09-09 02:04:19 guy Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/print-ppp.c,v 1.65 2001-10-24 03:49:19 itojun Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
length -= 2;
}
- if (eflag)
- printf("%s %d: ", ppp_protoname(proto), full_length);
+ printf("%s %d: ", ppp_protoname(proto), full_length);
handle_ppp(proto, p, length);
return;
proto = EXTRACT_16BITS(p);
p += 2;
length -= 2;
- if (eflag)
- printf("%s: ", ppp_protoname(proto));
+ printf("%s: ", ppp_protoname(proto));
handle_ppp(proto, p, length);
break;