From: Guy Harris Date: Sat, 2 May 2015 22:56:29 +0000 (-0700) Subject: Remove extraneous white space in the GRE SRE list output. X-Git-Tag: tcpdump-4.8.0~262 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/4ce240be656322c074a8af37525e89db1848dee9 Remove extraneous white space in the GRE SRE list output. --- diff --git a/print-gre.c b/print-gre.c index ec209556..aafd8846 100644 --- a/print-gre.c +++ b/print-gre.c @@ -314,15 +314,15 @@ gre_sre_print(netdissect_options *ndo, uint16_t af, uint8_t sreoff, case GRESRE_IP: ND_PRINT((ndo, ", (rtaf=ip")); gre_sre_ip_print(ndo, sreoff, srelen, bp, len); - ND_PRINT((ndo, ") ")); + ND_PRINT((ndo, ")")); break; case GRESRE_ASN: ND_PRINT((ndo, ", (rtaf=asn")); gre_sre_asn_print(ndo, sreoff, srelen, bp, len); - ND_PRINT((ndo, ") ")); + ND_PRINT((ndo, ")")); break; default: - ND_PRINT((ndo, ", (rtaf=0x%x) ", af)); + ND_PRINT((ndo, ", (rtaf=0x%x)", af)); } }