aboutsummaryrefslogtreecommitdiffstats
path: root/src/cert/x509crl/crl_ent.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cert/x509crl/crl_ent.h')
-rw-r--r--src/cert/x509crl/crl_ent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cert/x509crl/crl_ent.h b/src/cert/x509crl/crl_ent.h
index b3e696a86..f80fbb862 100644
--- a/src/cert/x509crl/crl_ent.h
+++ b/src/cert/x509crl/crl_ent.h
@@ -25,7 +25,7 @@ class BOTAN_DLL CRL_Entry : public ASN1_Object
* Get the serial number of the certificate associated with this entry.
* @return certificate's serial number
*/
- MemoryVector<byte> serial_number() const { return serial; }
+ std::vector<byte> serial_number() const { return serial; }
/**
* Get the revocation date of the certificate associated with this entry
@@ -54,7 +54,7 @@ class BOTAN_DLL CRL_Entry : public ASN1_Object
private:
bool throw_on_unknown_critical;
- MemoryVector<byte> serial;
+ std::vector<byte> serial;
X509_Time time;
CRL_Code reason;
};