diff options
author | Denis Ovsienko <infrastation@yandex.ru> | 2014-04-02 16:39:18 +0400 |
---|---|---|
committer | Denis Ovsienko <infrastation@yandex.ru> | 2014-04-02 18:22:28 +0400 |
commit | fc6f112b40b9da56286ebc125f109e2889f5ebdb (patch) | |
tree | f8703c5bd7fc434d756579b53b85e475459d6be4 /print-pppoe.c | |
parent | 2b753f80585fd13b547c3b6797806301d9cef5d6 (diff) | |
download | tcpdump-fc6f112b40b9da56286ebc125f109e2889f5ebdb.tar.gz |
NDOize LLDP, PPP and RSVP decoders
Diffstat (limited to 'print-pppoe.c')
-rw-r--r-- | print-pppoe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-pppoe.c b/print-pppoe.c index eae5ac4e..a59e141c 100644 --- a/print-pppoe.c +++ b/print-pppoe.c @@ -191,7 +191,7 @@ pppoe_print(netdissect_options *ndo, register const u_char *bp, u_int length) } else { /* PPPoE data */ ND_PRINT((ndo, " ")); - return (PPPOE_HDRLEN + ppp_print(pppoe_payload, pppoe_length)); + return (PPPOE_HDRLEN + ppp_print(ndo, pppoe_payload, pppoe_length)); } trunc: |