Don't ignore response to old OpenSSL warning

In the check for old versions of OpenSSL, the results of the call to `ignore_no_or_lame()` are ignored, and so the program continues even if the user enters `no`.
This commit is contained in:
David Cooper 2016-07-26 11:29:25 -04:00 committed by GitHub
parent 5a763ff8e1
commit 4ed1f2fc11

View File

@ -7116,6 +7116,7 @@ check4openssl_oldfarts() {
*) outln " Update openssl binaries or compile from github.com/PeterMosmans/openssl" ;;
esac
ignore_no_or_lame " Type \"yes\" to accept some false negatives or positives "
[[ $? -ne 0 ]] && exit -2
fi
outln
}