diff options
author | lloyd <[email protected]> | 2010-09-20 22:06:10 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-09-20 22:06:10 +0000 |
commit | c659284af15199a6d50dedb089a19dd927a17825 (patch) | |
tree | 93f575b875ed96272145aa4e50439c808ca4a618 /src/cert/x509store/x509stor.cpp | |
parent | 9bca1a4624ae5a6316f17c9c72896489b992383d (diff) |
Add CRL storage possibilities
Diffstat (limited to 'src/cert/x509store/x509stor.cpp')
-rw-r--r-- | src/cert/x509store/x509stor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cert/x509store/x509stor.cpp b/src/cert/x509store/x509stor.cpp index fe808b55a..6ae473aaa 100644 --- a/src/cert/x509store/x509stor.cpp +++ b/src/cert/x509store/x509stor.cpp @@ -277,7 +277,7 @@ u32bit X509_Store::find_parent_of(const X509_Certificate& cert) for(u32bit j = 0; j != stores.size(); ++j) { std::vector<X509_Certificate> got = - stores[j]->find_by_subject_and_key_id(issuer_dn, auth_key_id); + stores[j]->find_cert_by_subject_and_key_id(issuer_dn, auth_key_id); for(u32bit k = 0; k != got.size(); ++k) add_cert(got[k]); |