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-null.c | |
parent | 6cd498ec32be0073943573a8f5ee448d43355b34 (diff) | |
download | tcpdump-a91d20cc8491f2afcc04e51474244710481244b9.tar.gz |
Convert the IPv6 printer to use netdissect.
Diffstat (limited to 'print-null.c')
-rw-r--r-- | print-null.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-null.c b/print-null.c index a69997da..8eabe5dd 100644 --- a/print-null.c +++ b/print-null.c @@ -125,7 +125,7 @@ null_if_print(const struct pcap_pkthdr *h, const u_char *p) case BSD_AFNUM_INET6_BSD: case BSD_AFNUM_INET6_FREEBSD: case BSD_AFNUM_INET6_DARWIN: - ip6_print(p, length); + ip6_print(gndo, p, length); break; #endif |