aboutsummaryrefslogtreecommitdiffstats
path: root/src/cert/x509/x509_obj.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-02-14 06:18:15 +0000
committerlloyd <[email protected]>2010-02-14 06:18:15 +0000
commit7424a5b5102b569e3c052cb195c98b5d1b60ce30 (patch)
tree70ab6872b9980969a7dea97bccdcdbb4e4916f7a /src/cert/x509/x509_obj.cpp
parent12e07d37e9622cfb24b2102090550a0260c6665c (diff)
parent16c3b54220d6e80f713a4d6321deb53a7b1e1fec (diff)
propagate from branch 'net.randombit.botan' (head 5bfc3e699003b86615c584f8ae40bd6e761f96c0)
to branch 'net.randombit.botan.c++0x' (head 8c64a107b58d41f376bfffc69dfab4514d722c5c)
Diffstat (limited to 'src/cert/x509/x509_obj.cpp')
-rw-r--r--src/cert/x509/x509_obj.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cert/x509/x509_obj.cpp b/src/cert/x509/x509_obj.cpp
index 31b4a309f..95a1c1cca 100644
--- a/src/cert/x509/x509_obj.cpp
+++ b/src/cert/x509/x509_obj.cpp
@@ -168,7 +168,7 @@ bool X509_Object::check_signature(Public_Key& pub_key) const
Signature_Format format =
(pub_key.message_parts() >= 2) ? DER_SEQUENCE : IEEE_1363;
- std::auto_ptr<PK_Verifier> verifier;
+ std::unique_ptr<PK_Verifier> verifier;
if(dynamic_cast<PK_Verifying_with_MR_Key*>(&pub_key))
{