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:
rolltack 2023-04-15 23:53:06 +01:00 committed by GitHub
parent 038ac6643c
commit aedf6f866b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -539,7 +539,7 @@ my %variables = (
'wildcard' => setv(T_BOOL, 0, 1, 0, undef),
},
'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),
},
'dnsexit-common-defaults' => {