bin/delv/delv.c: Fix invalid logic operation in REQUIRE() condition

(cherry picked from commit 9ab16d10d4)
This commit is contained in:
Ondřej Surý
2019-09-27 08:46:03 +02:00
parent b9cb767cbf
commit a2c7b2f619

View File

@@ -502,7 +502,7 @@ setup_style(dns_master_style_t **stylep) {
isc_result_t result;
dns_master_style_t *style = NULL;
REQUIRE(stylep != NULL || *stylep == NULL);
REQUIRE(stylep != NULL && *stylep == NULL);
styleflags |= DNS_STYLEFLAG_REL_OWNER;
if (showcomments)