diff --git a/ChangeLog.md b/ChangeLog.md index cc2e604..ca430c7 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -62,9 +62,9 @@ repository history](https://github.com/ddclient/ddclient/commits/master). address changes. [#654](https://github.com/ddclient/ddclient/pull/654) * `he.net`: Added support for updating Hurricane Electric records. [#682](https://github.com/ddclient/ddclient/pull/682) - * `dyndns2`, `domeneshop`: The `server` option can now include `http://` or - `https://` to control the use of TLS. If omitted, the value of the `ssl` - option is used to determine the scheme. + * `dyndns2`, `domeneshop`, `dnsmadeeasy`: The `server` option can now include + `http://` or `https://` to control the use of TLS. If omitted, the value of + the `ssl` option is used to determine the scheme. [#703](https://github.com/ddclient/ddclient/pull/703) ### Bug fixes diff --git a/ddclient.in b/ddclient.in index d2f149b..3963c0d 100755 --- a/ddclient.in +++ b/ddclient.in @@ -7025,11 +7025,7 @@ sub nic_dnsmadeeasy_update { my $ip = delete $config{$h}{'wantip'}; info("Setting IP address to %s for %s", $ip, $h); verbose("UPDATE:", "Updating %s", $h); - - # Set the URL that we're going to to update - my $url; - $url = $globals{'ssl'} ? "https://" : "http://"; - $url .= $config{$h}{'server'} . $config{$h}{'script'}; + my $url = $config{$h}{'server'} . $config{$h}{'script'}; $url .= "?username=$config{$h}{'login'}"; $url .= "&password=$config{$h}{'password'}"; $url .= "&ip=$ip";