diff options
author | Denis Ovsienko <infrastation@yandex.ru> | 2014-03-28 14:08:48 +0400 |
---|---|---|
committer | Denis Ovsienko <infrastation@yandex.ru> | 2014-03-28 14:08:48 +0400 |
commit | 2210a967cb4e8cfca405543d5d98f3734690bd71 (patch) | |
tree | 4e312a73d8225f29974c7abd3c914f4681bc507e /print-llc.c | |
parent | 700a556c5f7dde12afb06eba7986f4e30b6c0da2 (diff) | |
download | tcpdump-2210a967cb4e8cfca405543d5d98f3734690bd71.tar.gz |
NDOize ISO CLNS decoder
Diffstat (limited to 'print-llc.c')
-rw-r--r-- | print-llc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-llc.c b/print-llc.c index cce0f80d..fdb1d981 100644 --- a/print-llc.c +++ b/print-llc.c @@ -290,7 +290,7 @@ llc_print(netdissect_options *ndo, const u_char *p, u_int length, u_int caplen, #endif if (ssap == LLCSAP_ISONS && dsap == LLCSAP_ISONS && control == LLC_UI) { - isoclns_print(p + 3, length - 3, caplen - 3); + isoclns_print(ndo, p + 3, length - 3, caplen - 3); return (1); } |