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-10-03 09:51:57 +02:00
parent bd5008fff5
commit a70bde79e1
+1 -1
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)