From f311b92ceaedb12c9e00a722b6b47bbe6b50871e Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Thu, 25 Aug 2016 16:17:46 +0200 Subject: cpp: Add WithTofu Keylist Mode * lang/cpp/src/context.cpp: Handle WithTofu. * lang/cpp/src/global.h (KeyListMode): Add WithTofu. * lang/cpp/src/util.h (add_to_gpgme_keylist_mode_t): Handle WithTofu. --- lang/cpp/src/util.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lang/cpp/src/util.h') diff --git a/lang/cpp/src/util.h b/lang/cpp/src/util.h index 8ccb0bf5..b0d47e3e 100644 --- a/lang/cpp/src/util.h +++ b/lang/cpp/src/util.h @@ -76,6 +76,9 @@ static inline gpgme_keylist_mode_t add_to_gpgme_keylist_mode_t(unsigned int oldm if (newmodes & GpgME::Validate) { oldmode |= GPGME_KEYLIST_MODE_VALIDATE; } + if (newmodes & GpgME::WithTofu) { + oldmode |= GPGME_KEYLIST_MODE_WITH_TOFU; + } #ifndef NDEBUG if (newmodes & ~(GpgME::Local | GpgME::Extern | GpgME::Signatures | GpgME::SignatureNotations | GpgME::Ephemeral | GpgME::Validate)) { //std::cerr << "GpgME::Context: keylist mode must be one of Local, " -- cgit v1.2.3