Honor the ssl
option for the web
URL
This commit is contained in:
parent
7921c53605
commit
03dffae74e
2 changed files with 2 additions and 5 deletions
|
@ -28,6 +28,7 @@ repository history](https://github.com/ddclient/ddclient/commits/master).
|
||||||
* Fixed a regression introduced in v3.9.0 that caused
|
* Fixed a regression introduced in v3.9.0 that caused
|
||||||
`use=ip,ip=<ipv4-address>` to fail.
|
`use=ip,ip=<ipv4-address>` to fail.
|
||||||
* "true" is now accepted as a boolean value.
|
* "true" is now accepted as a boolean value.
|
||||||
|
* The `ssl` option now applies to the `web` URL.
|
||||||
|
|
||||||
### Compatibility and dependency changes
|
### Compatibility and dependency changes
|
||||||
|
|
||||||
|
|
|
@ -2166,11 +2166,7 @@ sub get_ip {
|
||||||
$arg = $url;
|
$arg = $url;
|
||||||
|
|
||||||
if ($url) {
|
if ($url) {
|
||||||
$reply = geturl({
|
$reply = geturl({ proxy => opt('proxy', $h), url => $url }) || '';
|
||||||
proxy => opt('proxy', $h),
|
|
||||||
url => $url,
|
|
||||||
ignore_ssl_option => 1,
|
|
||||||
}) || '';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} elsif (($use eq 'cisco')) {
|
} elsif (($use eq 'cisco')) {
|
||||||
|
|
Loading…
Reference in a new issue