aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2023-02-25 01:51:45 -0800
committerGuy Harris <gharris@sonic.net>2024-02-27 13:08:09 -0800
commit0ef31b86947226e6d95a2f74947069087f0e8ad3 (patch)
tree4c825668586de13fdab13e5e46a41b6c47c76de5
parent12d1086acd70d223c34cf56173b7056fedf4cd2a (diff)
downloadtcpdump-0ef31b86947226e6d95a2f74947069087f0e8ad3.tar.gz
tcpdump.c: fix a comment. [skip ci]
Some versions of Mac OS X (as it was then called) *did*, in fact, ship with a libpcap that had pcap_findalldevs() but a pcap.h that didn't define pcap_if_t; it's not a question of "may ship", it's a fact of "did ship". (cherry picked from commit 97c31661edb100fefcf20383f057e25edd7f4e11)
-rw-r--r--tcpdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcpdump.c b/tcpdump.c
index 56e9393b..c657707f 100644
--- a/tcpdump.c
+++ b/tcpdump.c
@@ -38,7 +38,7 @@
#endif
/*
- * Some older versions of Mac OS X may ship pcap.h from libpcap 0.6 with a
+ * Some older versions of Mac OS X ship pcap.h from libpcap 0.6 with a
* libpcap based on 0.8. That means it has pcap_findalldevs() but the
* header doesn't define pcap_if_t, meaning that we can't actually *use*
* pcap_findalldevs().