From: Michał Kępień Date: Thu, 26 Jun 2025 10:05:53 +0000 (+0200) Subject: Fix version description in a startup log message X-Git-Tag: v9.21.10~20^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=12829660fca033de07d6320fc36ea52f5d594890;p=thirdparty%2Fbind9.git Fix version description in a startup log message Commit 5cd6c173ff74309ae7fb73b3e4c754f1589eaddc changed the contents of the PACKAGE_DESCRIPTION preprocessor macro from " ()" to just "" and missed a spot while adjusting all uses of this macro in the code base. Fix formatting for that malformed log message, emitted upon named startup. --- diff --git a/bin/named/main.c b/bin/named/main.c index 903598e707a..14dee08c861 100644 --- a/bin/named/main.c +++ b/bin/named/main.c @@ -1039,8 +1039,8 @@ setup(void) { } isc_log_write(NAMED_LOGCATEGORY_GENERAL, NAMED_LOGMODULE_MAIN, - ISC_LOG_NOTICE, "starting %s%s ", PACKAGE_STRING, - PACKAGE_DESCRIPTION, PACKAGE_SRCID); + ISC_LOG_NOTICE, "starting %s (%s) ", + PACKAGE_STRING, PACKAGE_DESCRIPTION, PACKAGE_SRCID); isc_log_write(NAMED_LOGCATEGORY_GENERAL, NAMED_LOGMODULE_MAIN, ISC_LOG_NOTICE, "running on %s", named_os_uname());