OpenSSL 1.1.1-pre2

This commit is contained in:
Hakase
2018-04-07 17:29:40 +09:00
parent 82a44d2483
commit bbac8ca55d
17755 changed files with 221242 additions and 98415 deletions
+20 -1
View File
@@ -13,8 +13,27 @@
export X1=/tmp/f.1.$$
export X2=/tmp/f.2.$$
case "$1" in
-f)
PAT='_F_'
echo Functions only
;;
-[er])
PAT='_R_'
echo Reason codes only
;;
"")
PAT='_[FR]_'
echo Function and reasons
;;
*)
echo "Usage error; one of -[efr] required."
exit 1;
;;
esac
cd include/openssl || exit 1
grep '_[RF]_' * | awk '{print $3;}' | sort -u >$X1
grep "$PAT" * | grep -v ERR_FATAL_ERROR | awk '{print $3;}' | sort -u >$X1
cd ../..
for F in `cat $X1` ; do