diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-01 17:53:28 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-01 17:53:28 +0300 |
commit | 8bae17304c9d58aa6af611f02eb0a02fccdb00e0 (patch) | |
tree | f02a1e2617b20f3d5914115ef0037a9f703e983c /openssl/agent/pkcs11/url.cxx | |
parent | 84c5c58b420ada15505b3e35b0bd1718567c6da7 (diff) |
Adapt to renaming butl::casecmp() to icasecmp()
Diffstat (limited to 'openssl/agent/pkcs11/url.cxx')
-rw-r--r-- | openssl/agent/pkcs11/url.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/agent/pkcs11/url.cxx b/openssl/agent/pkcs11/url.cxx index 1e0d503..d02b6ba 100644 --- a/openssl/agent/pkcs11/url.cxx +++ b/openssl/agent/pkcs11/url.cxx @@ -54,7 +54,7 @@ namespace openssl if (scheme.empty ()) return nullopt; - if (casecmp (scheme, "pkcs11") != 0) + if (icasecmp (scheme, "pkcs11") != 0) throw invalid_argument ("invalid scheme"); if (authority) |