diff options
author | Denis Ovsienko <infrastation@yandex.ru> | 2014-03-15 23:25:06 +0400 |
---|---|---|
committer | Denis Ovsienko <infrastation@yandex.ru> | 2014-03-15 23:25:06 +0400 |
commit | d57e945e5eb1a24ed43670f9cca6d51cf6d6fd99 (patch) | |
tree | cae804848dc56317eda19fe6d262bb71892e0d59 /print-llc.c | |
parent | d1cffd99e6487cc1c2f2dbbc6ea4cc60c36226c7 (diff) | |
download | tcpdump-d57e945e5eb1a24ed43670f9cca6d51cf6d6fd99.tar.gz |
NDOize EIGRP, ICMP, L2TP, STP and UDP decoders
Diffstat (limited to 'print-llc.c')
-rw-r--r-- | print-llc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/print-llc.c b/print-llc.c index 590496a3..59e48df9 100644 --- a/print-llc.c +++ b/print-llc.c @@ -234,7 +234,7 @@ llc_print(netdissect_options *ndo, const u_char *p, u_int length, u_int caplen, if (ssap == LLCSAP_8021D && dsap == LLCSAP_8021D && control == LLC_UI) { - stp_print(p+3, length-3); + stp_print(ndo, p+3, length-3); return (1); } @@ -438,7 +438,7 @@ snap_print(netdissect_options *ndo, const u_char *p, u_int length, u_int caplen, return (1); case PID_CISCO_PVST: case PID_CISCO_VLANBRIDGE: - stp_print(p, length); + stp_print(ndo, p, length); return (1); default: break; @@ -510,7 +510,7 @@ snap_print(netdissect_options *ndo, const u_char *p, u_int length, u_int caplen, return (1); case PID_RFC2684_BPDU: - stp_print(p, length); + stp_print(ndo, p, length); return (1); } } |