correct the indentation in hi2dns.c, as requested in pull-request #3

This commit is contained in:
Oskar Joelsson 2017-10-31 14:14:58 +01:00
parent 03946f949c
commit 27fdacba67
1 changed files with 3 additions and 3 deletions

View File

@ -162,9 +162,9 @@ void parse_xml_attributes(xmlAttrPtr attr, hi_node *hi)
else
hi->allow_incoming = 0;
} else if (strcmp((char *)attr->name, "hit_suite_id")==0) {
sscanf(value, "%d", &tmp);
hi->hit_suite_id = (char)tmp;
} else if (strcmp((char *)attr->name, "r1count")==0) {
sscanf(value, "%d", &tmp);
hi->hit_suite_id = (char)tmp;
} else if (strcmp((char *)attr->name, "r1count")==0) {
sscanf(value, "%llu", &hi->r1_gen_count);
} else if (strcmp((char *)attr->name, "addrcheck")==0) {
if (strcmp(value, "no")==0)