From 498df7579010b8ec8e1c50fbded97b4d1802e953 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Tue, 14 May 2024 17:33:35 -0400 Subject: [PATCH] Fix "no hosts to update" warning condition --- ddclient.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddclient.in b/ddclient.in index 9d40743..d21d7c5 100755 --- a/ddclient.in +++ b/ddclient.in @@ -1283,7 +1283,7 @@ sub main { $result = 0; } elsif (!scalar(%config)) { - warning("no hosts to update.") unless !opt('quiet') || opt('verbose') || !$daemon; + warning("no hosts to update.") if !opt('quiet'); $result = 1; } else {