aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2013-03-28 05:00:31 -0700
committerLev Walkin <vlm@lionet.info>2013-03-28 05:00:31 -0700
commit1d6d5191fb5a36187535423b1da103320a0bbefd (patch)
tree568da942a53dd95ddabd1ad0f8e3697aae143299
parent97f8edc598e6e487f49bd6bb44187ebe825af2cf (diff)
search with case sensitivity
-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) {