diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-07-07 08:53:19 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-07-07 08:53:19 +0200 |
commit | 20e15fb0a6ecb043a7c5b9ae94eddf0e6cb3d53a (patch) | |
tree | e89e044e366cbc6fde632f90276396b1ebc902da | |
parent | cf5a7a5b7e56affe45731f9f37b05d5f272f2138 (diff) |
Resolve ambiguous reference to access
-rw-r--r-- | openssl/agent/pkcs11/private-key.test.cxx | 2 | ||||
-rw-r--r-- | openssl/agent/pkcs11/url.test.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/openssl/agent/pkcs11/private-key.test.cxx b/openssl/agent/pkcs11/private-key.test.cxx index 801a753..359dbbc 100644 --- a/openssl/agent/pkcs11/private-key.test.cxx +++ b/openssl/agent/pkcs11/private-key.test.cxx @@ -31,7 +31,7 @@ main (int argc, char* argv[]) { url u (argv[1]); agent::pkcs11::identity idn (u); - access acc (u); + agent::pkcs11::access acc (u); vector<char> data ((istreambuf_iterator<char> (cin)), istreambuf_iterator<char> ()); diff --git a/openssl/agent/pkcs11/url.test.cxx b/openssl/agent/pkcs11/url.test.cxx index 20df02b..0e5c614 100644 --- a/openssl/agent/pkcs11/url.test.cxx +++ b/openssl/agent/pkcs11/url.test.cxx @@ -30,7 +30,7 @@ main () // Validate the URL attributes. // agent::pkcs11::identity idn (u); - access acc (u); + agent::pkcs11::access acc (u); cout << u << endl; } |