From: W.C.A. Wijngaards Date: Mon, 9 Mar 2026 08:18:43 +0000 (+0100) Subject: - Fix compile failure in unbound-checkconf for older gcc compiler. X-Git-Tag: release-1.25.0rc1~56 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=9af29c3ed1085d7eeb943a2e476a5331682450a0;p=thirdparty%2Funbound.git - Fix compile failure in unbound-checkconf for older gcc compiler. --- diff --git a/doc/Changelog b/doc/Changelog index 90223791c..83a016609 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +9 March 2026: Wouter + - Fix compile failure in unbound-checkconf for older gcc compiler. + 6 March 2026: Wouter - Merge #1415: Add lock unlock for view in memory error handling. diff --git a/smallapp/unbound-checkconf.c b/smallapp/unbound-checkconf.c index 399c2fce9..a8e19241f 100644 --- a/smallapp/unbound-checkconf.c +++ b/smallapp/unbound-checkconf.c @@ -228,6 +228,7 @@ nodefaultzonescheck(struct config_file* cfg) "documentation for default configured local-zones.\n", d->str); default_continue: + ; /* statement to jump to, for older gcc. */ } #undef COMPARE_ZONE_NAME }