From: Guy Harris Date: Sun, 16 Oct 2016 01:24:43 +0000 (-0700) Subject: Put back a comment that got lost. X-Git-Tag: libpcap-1.8.1~5 X-Git-Url: https://git.tcpdump.org/libpcap/commitdiff_plain/55bf433c23b977244e9e2ab6f2d64c4f6ffb69c2 Put back a comment that got lost. --- diff --git a/pcap-bpf.c b/pcap-bpf.c index f9a37395..b765904d 100644 --- a/pcap-bpf.c +++ b/pcap-bpf.c @@ -596,6 +596,9 @@ bpf_open_and_bind(const char *name, char *errbuf) int fd; struct ifreq ifr; + /* + * First, open a BPF device. + */ fd = bpf_open(errbuf); if (fd < 0) return (fd); /* fd is the appropriate error code */