diff --git a/lib/dns/include/dns/librpz.h b/lib/dns/include/dns/librpz.h index d8eb795003..ea3339289b 100644 --- a/lib/dns/include/dns/librpz.h +++ b/lib/dns/include/dns/librpz.h @@ -171,7 +171,7 @@ typedef struct librpz_result { librpz_dznum_t dznum; /* dnsrpzd zone number */ librpz_cznum_t cznum; /* librpz client zone number */ librpz_trig_t trig : LIBRPZ_TRIG_SIZE; - bool log : 1; /* log rewrite at given log level */ + bool log : 1; /* log rewrite at given log level */ } librpz_result_t; /** diff --git a/lib/dns/include/dns/rrl.h b/lib/dns/include/dns/rrl.h index bdffed99ac..48d582715a 100644 --- a/lib/dns/include/dns/rrl.h +++ b/lib/dns/include/dns/rrl.h @@ -112,11 +112,11 @@ struct dns_rrl_entry { unsigned int log_qname : DNS_RRL_QNAMES_BITS; #define DNS_RRL_TS_GEN_BITS 2 - unsigned int ts_gen : DNS_RRL_TS_GEN_BITS; + unsigned int ts_gen : DNS_RRL_TS_GEN_BITS; unsigned int ts_valid : 1; #define DNS_RRL_HASH_GEN_BITS 1 unsigned int hash_gen : DNS_RRL_HASH_GEN_BITS; - unsigned int logged : 1; + unsigned int logged : 1; #define DNS_RRL_LOG_BITS 11 unsigned int log_secs : DNS_RRL_LOG_BITS; diff --git a/tests/include/tests/isc.h b/tests/include/tests/isc.h index 4bfd34513c..338cdf8fa3 100644 --- a/tests/include/tests/isc.h +++ b/tests/include/tests/isc.h @@ -184,8 +184,8 @@ teardown_managers(void **state); setup_mctx(NULL); \ setup_workers(NULL); \ \ - while ((c = isc_commandline_parse(argc, argv, "dlt:")) != -1) \ - { \ + while ((c = isc_commandline_parse(argc, argv, "dlt:")) != \ + -1) { \ switch (c) { \ case 'd': \ debug = true; \