diff options
author | Guy Harris <gharris@sonic.net> | 2021-11-06 15:28:30 -0700 |
---|---|---|
committer | Guy Harris <gharris@sonic.net> | 2021-11-06 15:28:30 -0700 |
commit | 63a3ba3ca4ab196b7996324fbfdaa72d0a500ead (patch) | |
tree | 1898558668c7da6aa90a5781aa91fce2f814c2fc /pcap-npf.c | |
parent | 4ba0bf4f6f2f43107f62dd742b0d5e06422276a9 (diff) |
NPF: fix wrong variable name.
Diffstat (limited to 'pcap-npf.c')
-rw-r--r-- | pcap-npf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1593,7 +1593,7 @@ pcap_create_interface(const char *device _U_, char *ebuf) * and re-installing it, to flush * out all older drivers. */ - snprintf(errbuf, PCAP_ERRBUF_SIZE, + snprintf(ebuf, PCAP_ERRBUF_SIZE, "PacketGetTimestampModes() failed with ERROR_INVALID_FUNCTION; try uninstalling Npcap, and WinPcap if installed, and re-installing it from npcap.org"); pcap_close(p); return (NULL); |