mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 14:35:26 +00:00
Turn (int & flag) into (int & flag) != 0 when implicitly typed to bool
This commit is contained in:
@@ -50,7 +50,7 @@
|
||||
#define DNS_TSIG_MAXGENERATEDKEYS 4096
|
||||
#endif
|
||||
|
||||
#define is_response(msg) (msg->flags & DNS_MESSAGEFLAG_QR)
|
||||
#define is_response(msg) ((msg->flags & DNS_MESSAGEFLAG_QR) != 0)
|
||||
|
||||
#define BADTIMELEN 6
|
||||
|
||||
|
Reference in New Issue
Block a user