mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 06:25:31 +00:00
change "expr == false" to "!expr" in conditionals
This commit is contained in:
@@ -280,7 +280,7 @@ update_log(ns_client_t *client, dns_zone_t *zone, int level, const char *fmt,
|
||||
return;
|
||||
}
|
||||
|
||||
if (isc_log_wouldlog(ns_lctx, level) == false) {
|
||||
if (!isc_log_wouldlog(ns_lctx, level)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user