diff options
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 205535a..66f3dba 100644 --- a/update-ddns.in +++ b/update-ddns.in @@ -142,9 +142,9 @@ do then if [[ "${updateUrl}" = *'?'* ]] then - updateIps='&'"${updateIps}" + updateIps='&'"${updateIps#,}" else - updateIps='?'"${updateIps}" + updateIps='?'"${updateIps#,}" fi curl ${curlForceIpVer} -sS "${updateUrl}${updateIps}" 2> /dev/null fi |