summaryrefslogtreecommitdiff
path: root/print-llc.c
diff options
context:
space:
mode:
authorDenis Ovsienko <infrastation@yandex.ru>2014-03-15 23:25:06 +0400
committerDenis Ovsienko <infrastation@yandex.ru>2014-03-15 23:25:06 +0400
commitd57e945e5eb1a24ed43670f9cca6d51cf6d6fd99 (patch)
treecae804848dc56317eda19fe6d262bb71892e0d59 /print-llc.c
parentd1cffd99e6487cc1c2f2dbbc6ea4cc60c36226c7 (diff)
downloadtcpdump-d57e945e5eb1a24ed43670f9cca6d51cf6d6fd99.tar.gz
NDOize EIGRP, ICMP, L2TP, STP and UDP decoders
Diffstat (limited to 'print-llc.c')
-rw-r--r--print-llc.c6
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);
}
}