2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

Do not warn about lock-file option change when -X is used

When -X is used the 'lock-file' option change detection condition
is invalid, because it compares the 'lock-file' option's value to
the '-X' argument's value instead of the older 'lock-file' option
value (which was ignored because of '-X').

Don't warn about changing 'lock-file' option if '-X' is used.
This commit is contained in:
Aram Sargsyan 2023-10-26 12:28:25 +00:00
parent bc891e749f
commit 41945b32d7

View File

@ -8152,7 +8152,7 @@ check_lockfile(named_server_t *server, const cfg_obj_t *config,
if (!first_time) {
if (obj != NULL && cfg_obj_isstring(obj) &&
server->lockfile != NULL &&
server->lockfile != NULL && !named_g_forcelock &&
strcmp(cfg_obj_asstring(obj), server->lockfile) != 0)
{
isc_log_write(named_g_lctx, NAMED_LOGCATEGORY_GENERAL,