diff options
author | Erich Eckner <git@eckner.net> | 2017-03-01 17:43:43 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-03-01 17:43:43 +0100 |
commit | 2ce906678de67a151f1b81a04aba7f7431aaa3bc (patch) | |
tree | 3a7c1840bf48906102244e13e1a0ff38bafd0d10 /update-ddns.in | |
parent | f93ff748edf1b92e6b35f980b1f4eb5fe4cc39dd (diff) | |
download | update-ddns-2ce906678de67a151f1b81a04aba7f7431aaa3bc.tar.xz |
bugfix
Diffstat (limited to 'update-ddns.in')
-rw-r--r-- | update-ddns.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/update-ddns.in b/update-ddns.in index 66f3dba..ebf2192 100644 --- a/update-ddns.in +++ b/update-ddns.in @@ -142,9 +142,9 @@ do then if [[ "${updateUrl}" = *'?'* ]] then - updateIps='&'"${updateIps#,}" + updateIps='&address='"${updateIps#,}" else - updateIps='?'"${updateIps#,}" + updateIps='?address='"${updateIps#,}" fi curl ${curlForceIpVer} -sS "${updateUrl}${updateIps}" 2> /dev/null fi |