diff options
author | Guy Harris <guy@alum.mit.edu> | 2015-05-02 15:56:29 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2015-05-02 15:56:29 -0700 |
commit | 4ce240be656322c074a8af37525e89db1848dee9 (patch) | |
tree | 62e050b7b9102fbc018084b43d2d2d867682d687 /print-gre.c | |
parent | 87ca2371e18fc1fe8f874751205e011337d6e623 (diff) | |
download | tcpdump-4ce240be656322c074a8af37525e89db1848dee9.tar.gz |
Remove extraneous white space in the GRE SRE list output.
Diffstat (limited to 'print-gre.c')
-rw-r--r-- | print-gre.c | 6 |
1 files changed, 3 insertions, 3 deletions
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)); } } |