diff options
author | Guy Harris <gharris@sonic.net> | 2023-05-16 20:12:25 -0700 |
---|---|---|
committer | Guy Harris <gharris@sonic.net> | 2023-05-26 12:11:41 -0700 |
commit | d14fb11d0dfc06ee5dac58146497aa5b0aa7c6fa (patch) | |
tree | d5788de7a812404fbdf6dce2c51d7d593e5ac5f1 /fad-gifc.c | |
parent | eb324d58b651674764c17ed63dddc568952ffed9 (diff) |
Prefix routines declared in pcap-int.h with pcap_.
This avoids potential and, in one case (SIMH), actual collisions with
names in other libraries or in applications using libpcap.
Diffstat (limited to 'fad-gifc.c')
-rw-r--r-- | fad-gifc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -409,7 +409,7 @@ pcap_findalldevs_interfaces(pcap_if_list_t *devlistp, char *errbuf, /* * Add information for this address to the list. */ - if (add_addr_to_if(devlistp, ifrp->ifr_name, + if (pcap_add_addr_to_if(devlistp, ifrp->ifr_name, ifrflags.ifr_flags, get_flags_func, &ifrp->ifr_addr, SA_LEN(&ifrp->ifr_addr), netmask, netmask_size, broadaddr, broadaddr_size, |