DNSSEC: fix clang warning re && in || precedence
authorPhil Pennock <pdp@exim.org>
Mon, 14 Jul 2014 07:13:13 +0000 (03:13 -0400)
committerPhil Pennock <pdp@exim.org>
Mon, 14 Jul 2014 07:13:13 +0000 (03:13 -0400)
I looked and AFAICT the compiler guidance gives the correct logical
binding for the code intention.

```
dnsdb.c:362:32: warning: '&&' within '||' [-Wlogical-op-parentheses]
       || dnssec_mode == DEFER && !dns_is_secure(&dnsa)
       ~~ ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
dnsdb.c:362:32: note: place parentheses around the '&&' expression to silence this warning
       || dnssec_mode == DEFER && !dns_is_secure(&dnsa)
                               ^
          (                                            )
```

src/src/lookups/dnsdb.c

index 6b4d55c4d0e560d825c5f5da0f9a4df55f0de570..fde98b977d09962cbacb13525bb0671b76dc4e1d 100644 (file)
@@ -359,7 +359,7 @@ while ((domain = string_nextinlist(&keystring, &sep, buffer, sizeof(buffer)))
 
     if (rc == DNS_NOMATCH || rc == DNS_NODATA) continue;
     if (  rc != DNS_SUCCEED
-       || dnssec_mode == DEFER && !dns_is_secure(&dnsa)
+       || (dnssec_mode == DEFER && !dns_is_secure(&dnsa))
        )
       {
       if (defer_mode == DEFER)