X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/6288c273b66fa124b58af66026151fff1d5931c2..c39d40a767a1ae36171e5bcbf6f157ff3e80fb6c:/print-eap.c diff --git a/print-eap.c b/print-eap.c index 00d40889..b0542ad9 100644 --- a/print-eap.c +++ b/print-eap.c @@ -178,14 +178,14 @@ eap_print(netdissect_options *ndo, case EAP_TYPE_IDENTITY: if (len - 5 > 0) { ND_PRINT(", Identity: "); - (void)nd_printzp(ndo, cp + 5, len - 5, NULL); + nd_printjnp(ndo, cp + 5, len - 5); } break; case EAP_TYPE_NOTIFICATION: if (len - 5 > 0) { ND_PRINT(", Notification: "); - (void)nd_printzp(ndo, cp + 5, len - 5, NULL); + nd_printjnp(ndo, cp + 5, len - 5); } break;