From e155e1bf2c713408ca0d95c028eb978ac0fc2908 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Tue, 23 Jul 2024 00:16:35 -0400 Subject: [PATCH] dondominio: Delete unnecessary comments --- ddclient.in | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ddclient.in b/ddclient.in index 665c9a2..97a13bb 100755 --- a/ddclient.in +++ b/ddclient.in @@ -6521,14 +6521,11 @@ EoEXAMPLE sub nic_dondominio_update { debug("\nnic_dondominio_update -------------------"); - ## update each configured host - ## should improve to update in one pass for my $h (@_) { my $ip = delete $config{$h}{'wantip'}; info("setting IP address to %s for %s", $ip, $h); verbose("UPDATE:", "updating %s", $h); - # Set the URL that we're going to update my $url; $url = "https://$config{$h}{'server'}/plain/"; $url .= "?user="; @@ -6541,10 +6538,8 @@ sub nic_dondominio_update { $url .= $ip if $ip; - # Try to get URL my $reply = geturl(proxy => opt('proxy'), url => $url); - # No response, declare as failed if (!defined($reply) || !$reply) { failed("updating %s: Could not connect to %s.", $h, $config{$h}{'server'}); next;