Browse Source

spellcheck

pull/5117/head
alviy 5 months ago
committed by GitHub
parent
commit
54eec82311
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 8
      dnsapi/dns_alviy.sh

8
dnsapi/dns_alviy.sh

@ -104,11 +104,11 @@ _get_root() {
domain=$1
i=3
a="init"
while [ ! -z $a ]; do
while [ -n $a ]; do
a=$(printf "%s" "$domain" | cut -d . -f $i-)
i=$(($i + 1))
i=$((i + 1))
done
n=$(($i - 3))
n=$((i - 3))
h=$(printf "%s" "$domain" | cut -d . -f $n-)
if [ -z "$h" ]; then
#not valid
@ -124,7 +124,7 @@ _get_root() {
if _contains "$response" '"code":"NOT_FOUND"'; then
_debug "$h not found"
else
s=$(($n - 1))
s=$((n - 1))
_sub_domain=$(printf "%s" "$domain" | cut -d . -f -$s)
_domain="$h"
return 0

Loading…
Cancel
Save