Fix UCASE_ATTR not accepted in CLI

This commit is contained in:
Wilson Lin 2018-08-04 23:41:17 +12:00
parent 919bd6aefa
commit 4b740c23df
1 changed files with 2 additions and 0 deletions

View File

@ -94,6 +94,8 @@ static void _parse_and_add_errors_to_suppress(nh_set_int32_t suppressed_errors,
nh_set_int32_add(suppressed_errors, HBE_PARSE_INVALID_ENTITY);
} else if (hbu_buffer_compare_lit(part, "NONSTANDARD_TAG") == 0) {
nh_set_int32_add(suppressed_errors, HBE_PARSE_NONSTANDARD_TAG);
} else if (hbu_buffer_compare_lit(part, "UCASE_ATTR") == 0) {
nh_set_int32_add(suppressed_errors, HBE_PARSE_UCASE_ATTR);
} else if (hbu_buffer_compare_lit(part, "UCASE_TAG") == 0) {
nh_set_int32_add(suppressed_errors, HBE_PARSE_UCASE_TAG);
} else if (hbu_buffer_compare_lit(part, "UNQUOTED_ATTR") == 0) {