aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libasn1fix/asn1fix_misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libasn1fix/asn1fix_misc.c b/libasn1fix/asn1fix_misc.c
index 69d08bd6..d2c9e5c7 100644
--- a/libasn1fix/asn1fix_misc.c
+++ b/libasn1fix/asn1fix_misc.c
@@ -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) {