From 07800a4586097fd55d5292cae342073e58fa55df Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Tue, 23 Jul 2024 00:35:29 -0400 Subject: [PATCH] dnsmadeeasy: Delete unnecessary comments --- ddclient.in | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ddclient.in b/ddclient.in index 9fde670..e357e1b 100755 --- a/ddclient.in +++ b/ddclient.in @@ -6589,8 +6589,6 @@ sub nic_dnsmadeeasy_update { 'success' => 'Record successfully updated!', ); - ## 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); @@ -6601,10 +6599,8 @@ sub nic_dnsmadeeasy_update { $url .= "&ip=$ip"; $url .= "&id=$h"; - # 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;