summaryrefslogtreecommitdiff
path: root/print-ether.c
diff options
context:
space:
mode:
authorDenis Ovsienko <infrastation@yandex.ru>2014-04-02 16:39:18 +0400
committerDenis Ovsienko <infrastation@yandex.ru>2014-04-02 18:22:28 +0400
commitfc6f112b40b9da56286ebc125f109e2889f5ebdb (patch)
treef8703c5bd7fc434d756579b53b85e475459d6be4 /print-ether.c
parent2b753f80585fd13b547c3b6797806301d9cef5d6 (diff)
downloadtcpdump-fc6f112b40b9da56286ebc125f109e2889f5ebdb.tar.gz
NDOize LLDP, PPP and RSVP decoders
Diffstat (limited to 'print-ether.c')
-rw-r--r--print-ether.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/print-ether.c b/print-ether.c
index 057825dc..64b7f338 100644
--- a/print-ether.c
+++ b/print-ether.c
@@ -376,7 +376,7 @@ ethertype_print(netdissect_options *ndo,
case ETHERTYPE_PPP:
if (length) {
ND_PRINT((ndo, ": "));
- ppp_print(/*ndo,*/p, length);
+ ppp_print(ndo, p, length);
}
return (1);
@@ -394,7 +394,7 @@ ethertype_print(netdissect_options *ndo,
return (1);
case ETHERTYPE_LLDP:
- lldp_print(/*ndo,*/p, length);
+ lldp_print(ndo, p, length);
return (1);
case ETHERTYPE_LOOPBACK: