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-llc.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-llc.c')
-rw-r--r-- | print-llc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print-llc.c b/print-llc.c index b9c99632..c5bda71e 100644 --- a/print-llc.c +++ b/print-llc.c @@ -211,7 +211,7 @@ llc_print(const u_char *p, u_int length, u_int caplen, if (eflag) printf("IPX 802.3: "); - ipx_print(p, length); + ipx_print(gndo, p, length); return (1); } @@ -258,7 +258,7 @@ llc_print(const u_char *p, u_int length, u_int caplen, if (eflag) printf("IPX 802.2: "); - ipx_print(p+3, length-3); + ipx_print(gndo, p+3, length-3); return (1); } |