]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Get rid of extra blank after unknown options.
authorMatthew Luckie <[email protected]>
Tue, 28 Feb 2012 23:41:12 +0000 (15:41 -0800)
committerGuy Harris <[email protected]>
Tue, 28 Feb 2012 23:41:12 +0000 (15:41 -0800)
Reviewed-By: Guy Harris <[email protected]>
print-ip6opts.c

index 7a4bf5593a8694d5721e28d10e0d954c2ae29d7d..31eb5219f2ff0a96dc5c0fea7e130b5aa7eecc8a 100644 (file)
@@ -271,7 +271,7 @@ ip6_opt_print(const u_char *bp, int len)
                printf("(type %d: trunc)", bp[i]);
                goto trunc;
            }
-           printf("(opt_type 0x%02x: len=%d) ", bp[i], bp[i + 1]);
+           printf("(opt_type 0x%02x: len=%d)", bp[i], bp[i + 1]);
            break;
        }
     }