Commit 1d6d5191 authored by Lev Walkin's avatar Lev Walkin

search with case sensitivity

parent 97f8edc5
......@@ -289,7 +289,7 @@ asn1f_check_unique_expr_child(arg_t *arg, asn1p_expr_t *child,
if(expr->Identifier == NULL
|| expr->expr_type == A1TC_EXTENSIBLE)
continue;
ret = strcasecmp(expr->Identifier, child->Identifier);
ret = strcmp(expr->Identifier, child->Identifier);
}
if(ret == 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment