Preventing unitialized values, check https://sourceforge.net/forum/message.php?msg_id=4167772
git-svn-id: svn+ssh://svn.code.sf.net/p/ddclient/code/trunk/svn@43 3873ddee-7413-0410-b6c4-c2c57c1ab35a
This commit is contained in:
parent
154a0f11c0
commit
6ff9e58e14
2 changed files with 4 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
|||
Changelog
|
||||
|
||||
3.7.2
|
||||
|
||||
3.7.1
|
||||
* URL of zoneedit has changed (see bug #1558483)
|
||||
* Added initscript for Ubuntu (posted by Paolo Martinelli)
|
||||
|
|
4
ddclient
4
ddclient
|
@ -1656,8 +1656,8 @@ sub geturl {
|
|||
$url =~ s%^[^/]*/%%;
|
||||
|
||||
debug("server = $server");
|
||||
debug("opt(fw = ",opt('fw'));
|
||||
debug("glo fw = $globals{'fw'}");
|
||||
opt('fw') && debug("opt(fw = ",opt('fw'),")");
|
||||
$globals{'fw'} && debug("glo fw = $globals{'fw'}");
|
||||
#if ( $globals{'ssl'} and $server ne $globals{'fw'} ) {
|
||||
## always omit SSL for connections to local router
|
||||
if ( $globals{'ssl'} and (caller(1))[3] ne 'main::get_ip' ) {
|
||||
|
|
Loading…
Reference in a new issue