xpcap icon indicating copy to clipboard operation
xpcap copied to clipboard

Logic error in sniffer.c when specific BPF device is requested

Open kilinitt opened this issue 5 years ago • 0 comments

Line 57 in sniffer.c:

if (sniffer->fd != -1)

Should be:

if (sniffer->fd == -1)

kilinitt avatar Oct 08 '19 21:10 kilinitt