fix for list short name

This commit is contained in:
neilpang
2021-06-22 20:39:00 +08:00
parent 41f4baadb9
commit c7285967d6
2 changed files with 4 additions and 0 deletions

View File

@@ -6665,6 +6665,9 @@ _getCAShortName() {
if [ -z "$caurl" ]; then
caurl="$DEFAULT_CA"
fi
if [ "$CA_SSLCOM_ECC" = "$caurl" ]; then
caurl="$CA_SSLCOM_RSA" #just hack to get the short name
fi
caurl_lower="$(echo $caurl | _lower_case)"
_sindex=0
for surl in $(echo "$CA_SERVERS" | _lower_case | tr , ' '); do