diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-06-19 13:05:00 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-06-19 13:06:52 +0300 |
commit | 994862bfd1864cc2079cdb7b870df09b875e39ba (patch) | |
tree | cf3435164bf71037c437eb203460a1a234753d38 /openssl/agent/pkcs11/url.test.cxx | |
parent | c018d3af9d543140ed3a6d49df650bee26c6dcfd (diff) |
Fix GCC 10 compilation error
Diffstat (limited to 'openssl/agent/pkcs11/url.test.cxx')
-rw-r--r-- | openssl/agent/pkcs11/url.test.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/agent/pkcs11/url.test.cxx b/openssl/agent/pkcs11/url.test.cxx index 834de07..20df02b 100644 --- a/openssl/agent/pkcs11/url.test.cxx +++ b/openssl/agent/pkcs11/url.test.cxx @@ -29,8 +29,8 @@ main () // Validate the URL attributes. // - identity idn (u); - access acc (u); + agent::pkcs11::identity idn (u); + access acc (u); cout << u << endl; } |