summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/cryptplug.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/lib/cryptplug.cpp')
-rw-r--r--certmanager/lib/cryptplug.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/certmanager/lib/cryptplug.cpp b/certmanager/lib/cryptplug.cpp
index 77a91451..24ded795 100644
--- a/certmanager/lib/cryptplug.cpp
+++ b/certmanager/lib/cryptplug.cpp
@@ -1,5 +1,4 @@
-/* -*- Mode: C++ -*-
-
+/*
this is a C++-ification of:
GPGMEPLUG - an GPGME based cryptography plug-in following
the common CRYPTPLUG specification.
@@ -697,8 +696,8 @@ GpgME::ImportResult CryptPlug::importCertificateFromMem( const char* data, size_
{
using namespace GpgME;
- std::auto_ptr<Context> context( Context::createForProtocol( mProtocol ) );
- if ( !context.get() )
+ std::unique_ptr<Context> context( Context::createForProtocol( mProtocol ) );
+ if ( !context )
return ImportResult();
Data keydata( data, length, false );