]> git.ipfire.org Git - thirdparty/bind9.git/commit
Fix an invalid condition check when detecting a lock-file change
authorAram Sargsyan <aram@isc.org>
Thu, 26 Oct 2023 12:24:17 +0000 (12:24 +0000)
committerAram Sargsyan <aram@isc.org>
Thu, 26 Oct 2023 12:34:07 +0000 (12:34 +0000)
commitbc891e749fe361caeb7d7ca5208ebf1e1f4f02ac
tree3306bb9db6d1126fbc7a8d1a87dd34ab6ec92624
parentfc2dd0939002b1edf7ced4b653c9d6640576a213
Fix an invalid condition check when detecting a lock-file change

It is obvious that the '!cfg_obj_asstring(obj)' check should be
'cfg_obj_asstring(obj)' instead, because it is an AND logic chain
which further uses 'obj' as a string.

Fix the error.
bin/named/server.c