diff options
author | Andre Heinecke <[email protected]> | 2016-07-04 09:31:01 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-07-04 09:44:39 +0000 |
commit | 80498ab662238a31325e78c0037ea6752f680a37 (patch) | |
tree | f28c9d78e5a0fdb58d557c20506f1270389845ea /lang/cpp/src/verificationresult.h | |
parent | Cpp: Add support for pinentry_mode (diff) | |
download | gpgme-80498ab662238a31325e78c0037ea6752f680a37.tar.gz gpgme-80498ab662238a31325e78c0037ea6752f680a37.zip |
Cpp: Add support for TOFU_CONFLICT sigsum
* lang/cpp/src/verificationresult.cpp (GpgME::Signature::Summary):
Handle TOFU_CONFLICT.
* lang/cpp/src/verificationresult.h (Summary): Add TofuConflict.
Diffstat (limited to 'lang/cpp/src/verificationresult.h')
-rw-r--r-- | lang/cpp/src/verificationresult.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/cpp/src/verificationresult.h b/lang/cpp/src/verificationresult.h index 5a2927f9..f5fbc2ec 100644 --- a/lang/cpp/src/verificationresult.h +++ b/lang/cpp/src/verificationresult.h @@ -115,7 +115,8 @@ public: CrlMissing = 0x080, CrlTooOld = 0x100, BadPolicy = 0x200, - SysError = 0x400 + SysError = 0x400, + TofuConflict= 0x800 }; Summary summary() const; |