From 6e5e2ab63f1f66a8558dd81ad5b48655930ce81d Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Thu, 30 May 2024 16:21:25 -0400 Subject: [PATCH] dnsexit2: Remove `https://` from update service URL This allows the `ssl` setting to control TLS vs. plain HTTP, and makes it possible to create a compatible service that doesn't use TLS (e.g., for testing). --- ddclient.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddclient.in b/ddclient.in index fa2512b..7c490f3 100755 --- a/ddclient.in +++ b/ddclient.in @@ -4190,7 +4190,7 @@ sub nic_dnsexit2_update { ttl => $config{$h}{'ttl'}, }); }; - my $url = "https://$config{$h}{'server'}$config{$h}{'path'}"; + my $url = $config{$h}{'server'} . $config{$h}{'path'}; my $reply = geturl( proxy => opt('proxy'), url => $url,