diff options
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: |