diff options
author | lloyd <[email protected]> | 2012-05-25 23:56:05 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-05-25 23:56:05 +0000 |
commit | d956f632061cb80f3d7a3ee2b6b4f384dcc73145 (patch) | |
tree | c045eeabc4f98c1eb9b5e3e20bcb23370087869a /src/cert/x509/x509_crl.cpp | |
parent | 12090a7148d9ee73572cc1a7268fc489504a8173 (diff) |
Some post merge fixups.
Fix some bugs that triggered if DEFAULT_BUFFERSIZE was either too
small or an odd size.
Diffstat (limited to 'src/cert/x509/x509_crl.cpp')
-rw-r--r-- | src/cert/x509/x509_crl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cert/x509/x509_crl.cpp b/src/cert/x509/x509_crl.cpp index 1d6393470..29495a627 100644 --- a/src/cert/x509/x509_crl.cpp +++ b/src/cert/x509/x509_crl.cpp @@ -51,14 +51,14 @@ bool X509_CRL::is_revoked(const X509_Certificate& cert) const if(cert.issuer_dn() != issuer_dn()) return false; - MemoryVector<byte> crl_akid = authority_key_id(); - MemoryVector<byte> cert_akid = cert.authority_key_id(); + std::vector<byte> crl_akid = authority_key_id(); + std::vector<byte> cert_akid = cert.authority_key_id(); if(!crl_akid.empty() && !cert_akid.empty()) if(crl_akid != cert_akid) return false; - MemoryVector<byte> cert_serial = cert.serial_number(); + std::vector<byte> cert_serial = cert.serial_number(); bool is_revoked = false; |