From 9dd097b5c2ee3c8a24bcead62b0332951c1edfc1 Mon Sep 17 00:00:00 2001 From: christos Date: Sat, 4 Apr 2020 21:00:03 +0000 Subject: [PATCH] Always include the sampling member so that the struct size is consistent. --- external/bsd/libpcap/dist/pcap-int.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/external/bsd/libpcap/dist/pcap-int.h b/external/bsd/libpcap/dist/pcap-int.h index 9032032298d3..2472eb7a6728 100644 --- a/external/bsd/libpcap/dist/pcap-int.h +++ b/external/bsd/libpcap/dist/pcap-int.h @@ -1,4 +1,4 @@ -/* $NetBSD: pcap-int.h,v 1.6 2019/10/01 16:02:12 christos Exp $ */ +/* $NetBSD: pcap-int.h,v 1.7 2020/04/04 21:00:03 christos Exp $ */ /* * Copyright (c) 1994, 1995, 1996 @@ -182,9 +182,9 @@ struct pcap { void *priv; /* private data for methods */ -#ifdef ENABLE_REMOTE +// #ifdef ENABLE_REMOTE struct pcap_samp rmt_samp; /* parameters related to the sampling process. */ -#endif +// #endif int swapped; FILE *rfile; /* null if live capture, non-null if savefile */