diff options
author | Werner Koch <wk@gnupg.org> | 2007-11-26 12:00:39 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2007-11-26 12:00:39 +0100 |
commit | 3d4ef0c814698381371c9d5563cf158950af896c (patch) | |
tree | 4a85d8ece842de5243f281e644975a2050236332 /common/audit.h | |
parent | New command GETAUDITLOG (diff) | |
download | gnupg2-3d4ef0c814698381371c9d5563cf158950af896c.tar.xz gnupg2-3d4ef0c814698381371c9d5563cf158950af896c.zip |
Add option --data to GETAUDITLOG command.
Return HTML formatted dummy output.
Diffstat (limited to 'common/audit.h')
-rw-r--r-- | common/audit.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/audit.h b/common/audit.h index ca7b70405..83baa41c7 100644 --- a/common/audit.h +++ b/common/audit.h @@ -22,6 +22,7 @@ #include <ksba.h> +#include "estream.h" struct audit_ctx_s; typedef struct audit_ctx_s *audit_ctx_t; @@ -132,7 +133,7 @@ void audit_log_s (audit_ctx_t ctx, audit_event_t event, const char *value); void audit_log_cert (audit_ctx_t ctx, audit_event_t event, ksba_cert_t cert, gpg_error_t err); -void audit_print_result (audit_ctx_t ctx, FILE *fp); +void audit_print_result (audit_ctx_t ctx, estream_t stream); |