aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/modules
diff options
context:
space:
mode:
authorMoshe Kaplan <me@moshekaplan.com>2021-12-19 21:40:23 -0500
committerAndersBroman <a.broman58@gmail.com>2021-12-22 11:01:11 +0000
commit69d54d6f8e668b6018375121ea2afb99f3dd0177 (patch)
treed0fffa200bbaf4ef325ac00c75a79d682bf379c6 /cmake/modules
parentb5928542b77cf789b112370bb7acc00942162519 (diff)
Corrects repeated words throughout the code.
Repeated words were found with: egrep "(\b[a-zA-Z]+) +\1\b" . -Ir and then manually reviewed. Non-displayed strings (e.g., in comments) were also corrected, to ease future review.
Diffstat (limited to 'cmake/modules')
-rw-r--r--cmake/modules/FindPCAP.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/modules/FindPCAP.cmake b/cmake/modules/FindPCAP.cmake
index 62704a1ee4..f033cc02c8 100644
--- a/cmake/modules/FindPCAP.cmake
+++ b/cmake/modules/FindPCAP.cmake
@@ -201,7 +201,7 @@ if(PCAP_FOUND)
set(HAVE_PCAP_SET_TSTAMP_TYPE TRUE)
else(WIN32)
#
- # Make sure we have at least libpcap 0.8, because we we require at
+ # Make sure we have at least libpcap 0.8, because we require at
# least libpcap 0.8's APIs.
#
# We check whether pcap_lib_version is defined in the pcap header,
@@ -223,7 +223,7 @@ if(PCAP_FOUND)
# remote capture support.
#
# However, 1) the sampling options are treated as remote options
- # in the GUI and and 2) having pcap_setsampling() doesn't mean
+ # in the GUI and 2) having pcap_setsampling() doesn't mean
# you have sampling support. libpcap needs a way to indicate
# whether a given device supports sampling, and the GUI should
# be changed to decouple them.