From aedf6f866b2e452b9087c0122eddca80eb48c09f Mon Sep 17 00:00:00 2001 From: rolltack Date: Sat, 15 Apr 2023 23:53:06 +0100 Subject: [PATCH] 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. --- ddclient.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddclient.in b/ddclient.in index e782cfc..a4464e2 100755 --- a/ddclient.in +++ b/ddclient.in @@ -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' => {