cpp: Add enum mapping for GPGME_AUDIT_LOG_DIAG

* src/context.cpp (to_auditlog_flags): Map DIAG value.
* src/context.h (AuditLogFlags): Add it.
This commit is contained in:
Andre Heinecke 2018-07-05 10:22:13 +02:00
parent a2458806f8
commit 629afebe50
No known key found for this signature in database
GPG Key ID: 2978E9D40CBABA5C
2 changed files with 5 additions and 0 deletions

View File

@ -1028,6 +1028,9 @@ unsigned int to_auditlog_flags(unsigned int flags)
if (flags & Context::AuditLogWithHelp) { if (flags & Context::AuditLogWithHelp) {
result |= GPGME_AUDITLOG_WITH_HELP; result |= GPGME_AUDITLOG_WITH_HELP;
} }
if (flags & Context::DiagnosticAuditLog) {
result |= GPGME_AUDITLOG_DIAG;
}
return result; return result;
} }

View File

@ -401,7 +401,9 @@ public:
// //
// //
enum AuditLogFlags { enum AuditLogFlags {
DefaultAuditLog = 0,
HtmlAuditLog = 1, HtmlAuditLog = 1,
DiagnosticAuditLog = 2,
AuditLogWithHelp = 128 AuditLogWithHelp = 128
}; };
GpgME::Error startGetAuditLog(Data &output, unsigned int flags = 0); GpgME::Error startGetAuditLog(Data &output, unsigned int flags = 0);