diff options
author | Denis Ovsienko <infrastation@yandex.ru> | 2014-03-13 17:21:55 +0400 |
---|---|---|
committer | Denis Ovsienko <infrastation@yandex.ru> | 2014-03-13 17:21:55 +0400 |
commit | d29f3dab95d8b28a62848fcb043b8ba40348bc3d (patch) | |
tree | 64b8baf7c02e0d51e8cb1c0f288eb04a75509aaa /print-ip6.c | |
parent | eb8916857ce311840b64bcec0baae15829b0b810 (diff) | |
download | tcpdump-d29f3dab95d8b28a62848fcb043b8ba40348bc3d.tar.gz |
NDOize 8 more small decoders
This change converts ZeroMQ, IPX, MPLS, IPv6 options, PPPoE, RIPng,
PFLOG and Sun RPC decoders.
Diffstat (limited to 'print-ip6.c')
-rw-r--r-- | print-ip6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print-ip6.c b/print-ip6.c index d3fe53a6..946971a3 100644 --- a/print-ip6.c +++ b/print-ip6.c @@ -153,11 +153,11 @@ ip6_print(netdissect_options *ndo, const u_char *bp, u_int length) switch (nh) { case IPPROTO_HOPOPTS: - advance = hbhopt_print(cp); + advance = hbhopt_print(ndo, cp); nh = *cp; break; case IPPROTO_DSTOPTS: - advance = dstopt_print(cp); + advance = dstopt_print(ndo, cp); nh = *cp; break; case IPPROTO_FRAGMENT: |