X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/1fe6e66ecec3fb7a7cc729038012cbb264542331..9ed7ddb48fd557dc993e73f22a50dda6cedf4df7:/print-loopback.c diff --git a/print-loopback.c b/print-loopback.c index c0297b8d..9a74ae61 100644 --- a/print-loopback.c +++ b/print-loopback.c @@ -1,5 +1,5 @@ /* - * This module implements decoding of the the Loopback Protocol, originally + * This module implements decoding of the Loopback Protocol, originally * defined as the Configuration Testing Protocol. It is based on the following * specification: * http://www.mit.edu/people/jhawk/ctp.pdf @@ -85,7 +85,7 @@ loopback_message_print(netdissect_options *ndo, const u_char *cp, const u_int le goto corrupt; /* forwarding address */ ND_TCHECK2(*cp, ETHER_ADDR_LEN); - ND_PRINT((ndo, ", forwarding address %s", etheraddr_string(cp))); + ND_PRINT((ndo, ", forwarding address %s", etheraddr_string(ndo, cp))); cp += ETHER_ADDR_LEN; /* data */ ND_PRINT((ndo, ", data (%u octets)", len - 8));