]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Remove extraneous white space in the GRE SRE list output.
authorGuy Harris <[email protected]>
Sat, 2 May 2015 22:56:29 +0000 (15:56 -0700)
committerGuy Harris <[email protected]>
Sat, 2 May 2015 22:56:29 +0000 (15:56 -0700)
print-gre.c

index ec2095561a2867af29b86018bb71c6a44ba3a14c..aafd8846d3b2911397cd8b31df5aaa578ea6d982 100644 (file)
@@ -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));
        }
 }