fix typos

This commit is contained in:
Qvinti 2020-01-09 23:35:46 +02:00
parent cd63240a6c
commit c3b372a922

View File

@ -45,14 +45,13 @@ dns_hostingUkraine_rm() {
return 1 return 1
fi fi
ids=$(echo "$response" | _egrep_o "[^{]+${txtvalue}[^}]+" | _egrep_o "id\":[^\,]+" | cut -c5-) ids=$(echo "$response" | _egrep_o "[^{]+${txtvalue}[^}]+" | _egrep_o "id\":[^\,]+" | cut -c5-)
if [ -z "$ids" ]; then if [ -z "$ids" ]; then
_err "Empty TXT records! ($fulldomain: $txtvalue)" _err "Empty TXT records! ($fulldomain: $txtvalue)"
return 1 return 1
fi fi
for id in $ids for id in $ids; do
do
stack="${stack:+${stack},}${id}" stack="${stack:+${stack},}${id}"
done done