Unverified Commit 5014f83b authored by Zbyszek Żółkiewski's avatar Zbyszek Żółkiewski
Browse files

Fix case sensitive detection of domain in the response request

parent ef15e559
...@@ -4082,7 +4082,7 @@ $_authorizations_map" ...@@ -4082,7 +4082,7 @@ $_authorizations_map"
if [ "$ACME_VERSION" = "2" ]; then if [ "$ACME_VERSION" = "2" ]; then
_idn_d="$(_idn "$d")" _idn_d="$(_idn "$d")"
_candindates="$(echo "$_authorizations_map" | grep "^$_idn_d,")" _candindates="$(echo "$_authorizations_map" | grep -i "^$_idn_d,")"
_debug2 _candindates "$_candindates" _debug2 _candindates "$_candindates"
if [ "$(echo "$_candindates" | wc -l)" -gt 1 ]; then if [ "$(echo "$_candindates" | wc -l)" -gt 1 ]; then
for _can in $_candindates; do for _can in $_candindates; do
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment