noip: Delete redundant response check

This commit is contained in:
Richard Hansen 2024-07-24 19:21:00 -04:00
parent 27143db56e
commit 5b433c3cd5

View file

@ -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;