The branch main has been updated by jrm:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=0c59e0b4e5817f139ce28486085b2f196351c7a3

commit 0c59e0b4e5817f139ce28486085b2f196351c7a3
Author:     Joseph Mingrone <j...@freebsd.org>
AuthorDate: 2023-03-30 16:18:28 +0000
Commit:     Joseph Mingrone <j...@freebsd.org>
CommitDate: 2023-03-30 18:58:45 +0000

    pflogd: Do not access obsolete structure member pcap.tzoff
    
    This change is in preparation for a libpcap update.
    
    See also:       
https://github.com/the-tcpdump-group/libpcap/commit/d4d65e7c4c0a6233784b346dcb0ebb7e23a3feaa
    Reviewed by:    emaste
    Sponsored by:   The FreeBSD Foundation
---
 contrib/pf/pflogd/pflogd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/pf/pflogd/pflogd.c b/contrib/pf/pflogd/pflogd.c
index de8d4acfa585..2b1b0df769a7 100644
--- a/contrib/pf/pflogd/pflogd.c
+++ b/contrib/pf/pflogd/pflogd.c
@@ -375,7 +375,7 @@ try_reset_dump(int nomove)
                hdr.magic = TCPDUMP_MAGIC;
                hdr.version_major = PCAP_VERSION_MAJOR;
                hdr.version_minor = PCAP_VERSION_MINOR;
-               hdr.thiszone = hpcap->tzoff;
+               hdr.thiszone = 0;
                hdr.snaplen = hpcap->snapshot;
                hdr.sigfigs = 0;
                hdr.linktype = hpcap->linktype;

Reply via email to