This commit is contained in:
pepe 2023-06-28 08:07:11 +00:00
parent 832f544098
commit 806e3d65c3
1 changed files with 2 additions and 2 deletions

View File

@ -673,9 +673,9 @@ if test "${GET}" == "1"; then
echo -n "Checking for new version of certdata.txt..."
HOST=$(echo "${URL}" | /usr/bin/cut -d / -f 3)
_url=$(echo "${URL}" | sed 's@raw-file@log@')
SARGS="-ign_eof -connect ${HOST}:443 -verifyCAfile ${MOZILLA_CA_ROOT}"
SARGS="-ign_eof -connect ${HOST}:443 -CAfile ${MOZILLA_CA_ROOT}"
if test -d /etc/ssl/certs; then
SARGS="${SARGS} -verifyCApath ${CERTDIR}"
SARGS="${SARGS} -CApath ${CERTDIR}"
fi
SARGS="${SARGS} -verify_return_error"
if test "${PROXY}x" != "x"; then