summaryrefslogtreecommitdiffstats
path: root/test/helpers/pkcs12.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/helpers/pkcs12.c')
-rw-r--r--test/helpers/pkcs12.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/helpers/pkcs12.c b/test/helpers/pkcs12.c
index cb94be7b88..a87683dc95 100644
--- a/test/helpers/pkcs12.c
+++ b/test/helpers/pkcs12.c
@@ -479,12 +479,15 @@ static int check_asn1_string(const ASN1_TYPE *av, const char *txt)
break;
case V_ASN1_UTF8STRING:
- if (!TEST_str_eq(txt, (char *)av->value.utf8string->data))
+ if (!TEST_mem_eq(txt, strlen(txt), (char *)av->value.utf8string->data,
+ av->value.utf8string->length))
goto err;
break;
case V_ASN1_OCTET_STRING:
- if (!TEST_str_eq(txt, (char *)av->value.octet_string->data))
+ if (!TEST_mem_eq(txt, strlen(txt),
+ (char *)av->value.octet_string->data,
+ av->value.octet_string->length))
goto err;
break;