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-ipnet.c | |
parent | 6cd498ec32be0073943573a8f5ee448d43355b34 (diff) | |
download | tcpdump-a91d20cc8491f2afcc04e51474244710481244b9.tar.gz |
Convert the IPv6 printer to use netdissect.
Diffstat (limited to 'print-ipnet.c')
-rw-r--r-- | print-ipnet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-ipnet.c b/print-ipnet.c index 957bd4f5..187f939d 100644 --- a/print-ipnet.c +++ b/print-ipnet.c @@ -69,7 +69,7 @@ ipnet_print(struct netdissect_options *ndo, const u_char *p, u_int length, u_int #ifdef INET6 case IPH_AF_INET6: - ip6_print(p, length); + ip6_print(ndo, p, length); break; #endif /*INET6*/ |