X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/33fee60fe09285b92531e3e6b635759a8e7f9093..fb8b947488c7f22b518de1df1a91e663dc7ab33c:/print-eap.c diff --git a/print-eap.c b/print-eap.c index 91b476f5..95a2c97e 100644 --- a/print-eap.c +++ b/print-eap.c @@ -22,7 +22,7 @@ #ifndef lint static const char rcsid[] _U_ = - "@(#) $Header: /tcpdump/master/tcpdump/print-eap.c,v 1.1 2004-03-25 03:29:53 mcr Exp $"; + "@(#) $Header: /tcpdump/master/tcpdump/print-eap.c,v 1.3 2004-04-23 19:03:39 mcr Exp $"; #endif #ifdef HAVE_CONFIG_H @@ -59,13 +59,13 @@ eap_print(netdissect_options *ndo, eap = (const struct eap_packet_t *)cp; ND_TCHECK(eap->data); - ND_PRINT("EAP code=%u id=%u length=%u ", - eap->code, eap->id, (eap->length[0]<<8) + eap->length[1]); + ND_PRINT((ndo, "EAP code=%u id=%u length=%u ", + eap->code, eap->id, (eap->length[0]<<8) + eap->length[1])); if (!ndo->ndo_vflag) return; trunc: - + ; }