diff options
author | Andre Heinecke <[email protected]> | 2016-08-25 14:17:46 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-08-25 14:17:46 +0000 |
commit | f311b92ceaedb12c9e00a722b6b47bbe6b50871e (patch) | |
tree | df8c130b1a7213d6e4eb48872bf73a01bb0b09c4 /lang/cpp/src/context.cpp | |
parent | qt: Fix tofuinfo test when gpg is gpg2 (diff) | |
download | gpgme-f311b92ceaedb12c9e00a722b6b47bbe6b50871e.tar.gz gpgme-f311b92ceaedb12c9e00a722b6b47bbe6b50871e.zip |
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.
Diffstat (limited to '')
-rw-r--r-- | lang/cpp/src/context.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lang/cpp/src/context.cpp b/lang/cpp/src/context.cpp index 62cad206..564cff58 100644 --- a/lang/cpp/src/context.cpp +++ b/lang/cpp/src/context.cpp @@ -1420,6 +1420,7 @@ std::ostream &operator<<(std::ostream &os, KeyListMode mode) CHECK(Signatures); CHECK(Validate); CHECK(Ephemeral); + CHECK(WithTofu); #undef CHECK return os << ')'; } |