mirror of
https://github.com/nmap/nmap.git
synced 2026-08-29 04:53:24 +00:00
Fix a variable name (broke Windows build in r37875, 7faec7f15)
This commit is contained in:
parent
f15fc6bb78
commit
f37a4bc42e
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue