From 5b433c3cd556fa62e6748c8e30f22da28a731c7e Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Wed, 24 Jul 2024 19:21:00 -0400 Subject: [PATCH] noip: Delete redundant response check --- ddclient.in | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ddclient.in b/ddclient.in index 435f47a..729a5c0 100755 --- a/ddclient.in +++ b/ddclient.in @@ -4121,11 +4121,7 @@ sub nic_noip_update { url => $url, login => $groupcfg{'login'}, password => $groupcfg{'password'}, - ) // ''; - if ($reply eq '') { - failed("updating %s: Could not connect to %s.", $hosts, $groupcfg{'server'}); - next; - } + ); next if !header_ok($hosts, $reply); my @reply = split /\n/, $reply;