diff options
author | Michael Richardson <mcr@sandelman.ca> | 2010-10-07 14:36:49 -0400 |
---|---|---|
committer | Michael Richardson <mcr@sandelman.ca> | 2010-10-07 14:40:50 -0400 |
commit | 1cead823ec6b407886002fbe160d31d70fcf4412 (patch) | |
tree | aa3fc19370462cbe469904895c2dc096dbc66666 /print-sll.c | |
parent | 53412397f6ce23f1c189e27adc81ec44ec94d2ef (diff) | |
download | tcpdump-1cead823ec6b407886002fbe160d31d70fcf4412.tar.gz |
reworked print-ether to use netdissect
Diffstat (limited to 'print-sll.c')
-rw-r--r-- | print-sll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-sll.c b/print-sll.c index c9546585..a044de67 100644 --- a/print-sll.c +++ b/print-sll.c @@ -218,7 +218,7 @@ recurse: caplen -= 4; goto recurse; } else { - if (ethertype_print(ether_type, p, length, caplen) == 0) { + if (ethertype_print(gndo, ether_type, p, length, caplen) == 0) { /* ether_type not known, print raw packet */ if (!eflag) sll_print(sllp, length + SLL_HDR_LEN); |