summaryrefslogtreecommitdiff
path: root/trust/tests/test-parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'trust/tests/test-parser.c')
-rw-r--r--trust/tests/test-parser.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/trust/tests/test-parser.c b/trust/tests/test-parser.c
index 7998d97..4c182a0 100644
--- a/trust/tests/test-parser.c
+++ b/trust/tests/test-parser.c
@@ -88,7 +88,7 @@ static CK_ATTRIBUTE *
parsed_attrs (CK_ATTRIBUTE *match)
{
CK_OBJECT_HANDLE handle;
- handle = p11_index_find (test.index, certificate_match);
+ handle = p11_index_find (test.index, certificate_match, -1);
return p11_index_lookup (test.index, handle);
}
@@ -247,7 +247,7 @@ test_parse_openssl_trusted (CuTest *cu)
/* The other objects */
for (i = 1; expected[i]; i++) {
- handle = p11_index_findn (test.index, expected[i], 2);
+ handle = p11_index_find (test.index, expected[i], 2);
CuAssertTrue (cu, handle != 0);
object = p11_index_lookup (test.index, handle);
@@ -322,7 +322,7 @@ test_parse_openssl_distrusted (CuTest *cu)
/* The other objects */
for (i = 1; expected[i]; i++) {
- handle = p11_index_findn (test.index, expected[i], 2);
+ handle = p11_index_find (test.index, expected[i], 2);
CuAssertTrue (cu, handle != 0);
object = p11_index_lookup (test.index, handle);