X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/3c8f3e13b03380742c24070f8a7b56fe12c6b8ee..da20bc56d6100b5275d6f85c4a25bac1dab4e57e:/print-symantec.c diff --git a/print-symantec.c b/print-symantec.c index 595994cd..c1fe3bd4 100644 --- a/print-symantec.c +++ b/print-symantec.c @@ -47,7 +47,7 @@ symantec_hdr_print(netdissect_options *ndo, register const u_char *bp, u_int len sp = (const struct symantec_header *)bp; - etype = EXTRACT_BE_16BITS(&sp->ether_type); + etype = EXTRACT_BE_U_2(&sp->ether_type); if (!ndo->ndo_qflag) { if (etype <= ETHERMTU) ND_PRINT((ndo, "invalid ethertype %u", etype)); @@ -92,7 +92,7 @@ symantec_if_print(netdissect_options *ndo, const struct pcap_pkthdr *h, const u_ sp = (const struct symantec_header *)p; p += sizeof (struct symantec_header); - ether_type = EXTRACT_BE_16BITS(&sp->ether_type); + ether_type = EXTRACT_BE_U_2(&sp->ether_type); if (ether_type <= ETHERMTU) { /* ether_type not known, print raw packet */