diff options
author | Guy Harris <guy@alum.mit.edu> | 2014-10-19 13:27:09 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2014-10-19 13:27:09 -0700 |
commit | 75f3112b589f1e0f85f189acc49b2d2bf9b155de (patch) | |
tree | d18592d23ac1e4aaf2f5d4cebfecf01f860f8240 /print-bgp.c | |
parent | 0115c33ed793638394a3480818271fbc443c0c53 (diff) | |
download | tcpdump-75f3112b589f1e0f85f189acc49b2d2bf9b155de.tar.gz |
The TCP dissector already prints the length; we don't have to.
Diffstat (limited to 'print-bgp.c')
-rw-r--r-- | print-bgp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-bgp.c b/print-bgp.c index f5c02a1b..9b78247d 100644 --- a/print-bgp.c +++ b/print-bgp.c @@ -2715,7 +2715,7 @@ bgp_print(netdissect_options *ndo, if (ndo->ndo_snapend < dat + length) ep = ndo->ndo_snapend; - ND_PRINT((ndo, ": BGP, length: %u", length)); + ND_PRINT((ndo, ": BGP")); if (ndo->ndo_vflag < 1) /* lets be less chatty */ return; |