Преглед изворни кода

Merge pull request #2621 from kolargol/master

Fix case sensitive detection of domain in the response request #2617
neil пре 5 година
родитељ
комит
ec7889dfa8
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      acme.sh

+ 1 - 1
acme.sh

@@ -4082,7 +4082,7 @@ $_authorizations_map"
 
       if [ "$ACME_VERSION" = "2" ]; then
         _idn_d="$(_idn "$d")"
-        _candindates="$(echo "$_authorizations_map" | grep "^$_idn_d,")"
+        _candindates="$(echo "$_authorizations_map" | grep -i "^$_idn_d,")"
         _debug2 _candindates "$_candindates"
         if [ "$(echo "$_candindates" | wc -l)" -gt 1 ]; then
           for _can in $_candindates; do