summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rwxr-xr-xutil/find-unused-errs4
1 files changed, 4 insertions, 0 deletions
diff --git a/util/find-unused-errs b/util/find-unused-errs
index d36789ef6f..68cf66b15f 100755
--- a/util/find-unused-errs
+++ b/util/find-unused-errs
@@ -21,6 +21,10 @@ for F in `cat $X1` ; do
git grep -l --full-name -F $F >$X2
NUM=`wc -l <$X2`
test $NUM -gt 2 && continue
+ if grep -q $F crypto/err/openssl.ec ; then
+ echo Possibly unused $F found in openssl.ec
+ continue
+ fi
echo $F
for FILE in `cat $X2` ; do
grep -v -w $F <$FILE >$FILE.new