Fix bug #501: (Keysystems) removed wrong parameter
Looks like there is a bug in line 542 in ddclient.in. The syntax of how the server URL is being set is different to all the other dynamic DNS services. To be precise there is one additional parameter. Instead of handing over the URL, the server variable receives the second "1" in the code below.
This commit is contained in:
parent
038ac6643c
commit
aedf6f866b
1 changed files with 1 additions and 1 deletions
|
@ -539,7 +539,7 @@ my %variables = (
|
||||||
'wildcard' => setv(T_BOOL, 0, 1, 0, undef),
|
'wildcard' => setv(T_BOOL, 0, 1, 0, undef),
|
||||||
},
|
},
|
||||||
'keysystems-common-defaults' => {
|
'keysystems-common-defaults' => {
|
||||||
'server' => setv(T_FQDNP, 1, 0, 1, 'dynamicdns.key-systems.net', undef),
|
'server' => setv(T_FQDNP, 1, 0, 'dynamicdns.key-systems.net', undef),
|
||||||
'login' => setv(T_LOGIN, 0, 0, 0, 'unused', undef),
|
'login' => setv(T_LOGIN, 0, 0, 0, 'unused', undef),
|
||||||
},
|
},
|
||||||
'dnsexit-common-defaults' => {
|
'dnsexit-common-defaults' => {
|
||||||
|
|
Loading…
Reference in a new issue