From f8bdc48e422f50989b5d2e1a1f705332c00efbf9 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Sun, 21 Jul 2024 20:46:51 -0400 Subject: [PATCH] freemyip: Delete unnecessary comments --- ddclient.in | 3 --- 1 file changed, 3 deletions(-) diff --git a/ddclient.in b/ddclient.in index ce357b2..23bd882 100755 --- a/ddclient.in +++ b/ddclient.in @@ -6420,7 +6420,6 @@ sub nic_freemyip_update { info("setting IP address to %s for %s", $ip, $h); verbose("UPDATE:", "updating %s", $h); - # Set the URL that we're going to to update my $url; $url = "https://$config{$h}{'server'}/update"; $url .= "?token="; @@ -6428,10 +6427,8 @@ sub nic_freemyip_update { $url .= "&domain="; $url .= $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;