summaryrefslogtreecommitdiffstats
path: root/contrib/tcpdump/extract.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/tcpdump/extract.h')
-rw-r--r--contrib/tcpdump/extract.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/tcpdump/extract.h b/contrib/tcpdump/extract.h
index 62f3f30..fbc8b5f 100644
--- a/contrib/tcpdump/extract.h
+++ b/contrib/tcpdump/extract.h
@@ -18,7 +18,7 @@
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * @(#) $Header: extract.h,v 1.14 96/07/15 18:23:12 leres Exp $ (LBL)
+ * @(#) $Header: extract.h,v 1.15 96/11/26 22:03:22 leres Exp $ (LBL)
*/
/* Network to host order macros */
@@ -36,7 +36,7 @@
#define EXTRACT_16BITS(p) \
((u_short)ntohs(*(u_short *)(p)))
#define EXTRACT_32BITS(p) \
- ntohl(*(u_int32_t *)(p))
+ ((u_int32_t)ntohl(*(u_int32_t *)(p)))
#endif
#define EXTRACT_24BITS(p) \
OpenPOWER on IntegriCloud