From d8a1449a19e9687fdf8ab1c9193284d4a1d421a6 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Thu, 30 May 2024 16:23:42 -0400 Subject: [PATCH] dnsexit2: Fix error message format string This fixes a bug introduced in commit 2bf6d348b088daf4abef16089e794af97ccf506f. --- ddclient.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddclient.in b/ddclient.in index 7c490f3..1de2df5 100755 --- a/ddclient.in +++ b/ddclient.in @@ -4203,7 +4203,7 @@ sub nic_dnsexit2_update { }), ); unless ($reply && header_ok($h, $reply)) { - failed("updating %s: Could not connect to %s%s.", $h, $url); + failed("updating %s: Could not connect to %s", $h, $url); last; }; debug("%s", $reply);