Browse Source

Make sure wildcards are escaped properly whenever the SANs list contains any of them

pull/371/head
Andrea Veri 8 years ago
parent
commit
f4afd355ac
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      getssl

+ 1
- 1
getssl View File

@ -2116,7 +2116,7 @@ if [[ $API -eq 2 ]]; then
dn=0
for d in $alldomains; do
# get authorizations link
AuthLink[$dn]=$(json_get "$response" "identifiers" "value" "$d" "authorizations" "x")
AuthLink[$dn]=$(json_get "$response" "identifiers" "value" "${d/\*/\\*}" "authorizations" "x")
debug "authorizations link for $d - ${AuthLink[$dn]}"
((dn++))
done


Loading…
Cancel
Save