diff options
author | Guy Harris <guy@alum.mit.edu> | 2010-11-07 12:50:16 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2010-11-07 12:50:16 -0800 |
commit | a91d20cc8491f2afcc04e51474244710481244b9 (patch) | |
tree | 7c54d6432f0c11987e1960c337ca14afdc6b8a26 /print-mpls.c | |
parent | 6cd498ec32be0073943573a8f5ee448d43355b34 (diff) | |
download | tcpdump-a91d20cc8491f2afcc04e51474244710481244b9.tar.gz |
Convert the IPv6 printer to use netdissect.
Diffstat (limited to 'print-mpls.c')
-rw-r--r-- | print-mpls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-mpls.c b/print-mpls.c index 13ad0fdd..d97cce52 100644 --- a/print-mpls.c +++ b/print-mpls.c @@ -199,7 +199,7 @@ mpls_print(const u_char *bp, u_int length) case PT_IPV6: #ifdef INET6 - ip6_print(p, length - (p - bp)); + ip6_print(gndo, p, length - (p - bp)); #else printf("IPv6, length: %u", length); #endif |