aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2023-02-15 10:05:00 +0100
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2023-02-15 19:48:05 +0100
commitad2369eda94aebc65315d50cead8e5e66eac31ee (patch)
treeb9d9f7a75e7c57c224d46e830b9626541e9a703f
parent3fc6d8c82790b1039f69ad0b7cacddc025bb1f4b (diff)
downloadlibpcap-ad2369eda94aebc65315d50cead8e5e66eac31ee.tar.gz
Avoid a space before a tab in a comment
This change avoids a false positive when looking for bad indentations. Moreover: Replace the deprecated 'egrep' variant by 'grep -E'. (cherry picked from commit 38e80701e641c882c73964320cbd8e4f726bc97d) [skip ci]
-rwxr-xr-xmkdep2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkdep b/mkdep
index ef120bdb..f85a447a 100755
--- a/mkdep
+++ b/mkdep
@@ -92,7 +92,7 @@ _EOF_
# hack can't deal with anything that requires a search path, and doesn't
# even try for anything using bracket (<>) syntax.
#
-# egrep '^#include[ ]*".*"' /dev/null $* |
+# grep -E '^#include[[:blank:]]*".*"' /dev/null $* |
# sed -e 's/:[^"]*"\([^"]*\)".*/: \1/' -e 's/\.c/.o/' |
#