From b07aa91ed54241682ecb82a325a4927484cf1b5c Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Tue, 23 Jul 2024 00:41:53 -0400 Subject: [PATCH] dnsmadeeasy: Don't bother setting `status` on failure It's already initialized to a non-success value. --- ddclient.in | 1 - 1 file changed, 1 deletion(-) diff --git a/ddclient.in b/ddclient.in index a38d70e..71ea8b6 100755 --- a/ddclient.in +++ b/ddclient.in @@ -6609,7 +6609,6 @@ sub nic_dnsmadeeasy_update { $config{$h}{'status'} = 'good'; success("$h: IP address set to $ip"); } else { - $config{$h}{'status'} = 'failed'; my $err = $messages{$returned} ? "$returned: $messages{$returned}" : $returned; failed("$h: Server said: $err"); }