X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/c422d3ab0f6de2d38512a4566637bc47df291e74..4bec97f457e593be925e92fa28d73af6a57d81cf:/print-ipcomp.c diff --git a/print-ipcomp.c b/print-ipcomp.c index 2ee01183..bc76448f 100644 --- a/print-ipcomp.c +++ b/print-ipcomp.c @@ -21,7 +21,7 @@ #ifndef lint static const char rcsid[] = - "@(#) $Header: /tcpdump/master/tcpdump/print-ipcomp.c,v 1.15 2002-09-05 21:25:42 guy Exp $"; + "@(#) $Header: /tcpdump/master/tcpdump/print-ipcomp.c,v 1.17 2002-12-11 07:14:03 guy Exp $"; #endif #ifdef HAVE_CONFIG_H @@ -45,6 +45,7 @@ struct ipcomp { #include "interface.h" #include "addrtoname.h" +#include "extract.h" int ipcomp_print(register const u_char *bp, int *nhdr) @@ -57,7 +58,7 @@ ipcomp_print(register const u_char *bp, int *nhdr) #endif ipcomp = (struct ipcomp *)bp; - cpi = (u_int16_t)ntohs(ipcomp->comp_cpi); + cpi = EXTRACT_16BITS(&ipcomp->comp_cpi); /* 'ep' points to the end of available data. */ ep = snapend;