statzone

DNS zone file analyzer targeted at TLD zones
Log | Files | Refs | README | LICENSE

commit 33112a326b32a387b51c6660dd5260b41773b354
parent dab2db123b4237d51e67d5a52422aef99a8e0553
Author: Frederic Cambus <fred@statdns.com>
Date:   Mon,  8 Feb 2021 14:27:38 +0100

Remove useless braces.

Diffstat:
Msrc/statzone.c | 6++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/statzone.c b/src/statzone.c @@ -190,13 +190,11 @@ main(int argc, char *argv[]) continue; } - if (token_count && !strcmp(token_lc, "a")) { + if (token_count && !strcmp(token_lc, "a")) results.a++; - } - if (token_count && !strcmp(token_lc, "aaaa")) { + if (token_count && !strcmp(token_lc, "aaaa")) results.aaaa++; - } if (token_count && !strcmp(token_lc, "ds")) { results.ds++;