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 /sf-pcapng.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 'sf-pcapng.c')
-rw-r--r-- | sf-pcapng.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sf-pcapng.c b/sf-pcapng.c index cf87ac66..3a9fa23a 100644 --- a/sf-pcapng.c +++ b/sf-pcapng.c @@ -1090,7 +1090,7 @@ pcap_ng_cleanup(pcap_t *p) struct pcap_ng_sf *ps = p->priv; free(ps->ifaces); - sf_cleanup(p); + pcap_sf_cleanup(p); } /* |