From f37a4bc42e7b27762699623572b847b88cfc58f6 Mon Sep 17 00:00:00 2001 From: dmiller Date: Fri, 7 Feb 2020 05:07:09 +0000 Subject: [PATCH] Fix a variable name (broke Windows build in r37875, 7faec7f15) --- output.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output.cc b/output.cc index 8d7bcc53d..2b28e3d79 100644 --- a/output.cc +++ b/output.cc @@ -319,7 +319,7 @@ static void print_iflist_pcap_mapping(const struct interface_info *iflist, /* Build a list of "leftover" libpcap interfaces. Initially it contains all the interfaces. */ if (o.have_pcap) { - if (pcap_findalldevs(&p_ifaces, errbuf) == -1) { + if (pcap_findalldevs(&pcap_ifs, errbuf) == -1) { fatal("pcap_findalldevs(): Cannot retrieve pcap interfaces: %s", errbuf); } for (const pcap_if_t *p = pcap_ifs; p != NULL; p = p->next)