From: Guy Harris Date: Mon, 31 Jan 2022 02:13:48 +0000 (-0800) Subject: pflog: use BSD socket AF numbers, not RFC 1700 AF numbers. X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/19336ba41fcf4b36341533398bfcf8988da3a39b pflog: use BSD socket AF numbers, not RFC 1700 AF numbers. --- diff --git a/print-pflog.c b/print-pflog.c index c6ed1c19..1cffbf6b 100644 --- a/print-pflog.c +++ b/print-pflog.c @@ -176,7 +176,7 @@ pflog_if_print(netdissect_options *ndo, const struct pcap_pkthdr *h, * * Hopefully, there isn't. */ - case AFNUM_INET: + case BSD_AFNUM_INET: ip_print(ndo, p, length); break;