diff options
Diffstat (limited to 'g10/gpgv.c')
-rw-r--r-- | g10/gpgv.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/g10/gpgv.c b/g10/gpgv.c index d1e6da956..3bb99dc6c 100644 --- a/g10/gpgv.c +++ b/g10/gpgv.c @@ -544,12 +544,14 @@ get_override_session_key (DEK *dek, const char *string) /* Stub: */ int -decrypt_data (ctrl_t ctrl, void *procctx, PKT_encrypted *ed, DEK *dek) +decrypt_data (ctrl_t ctrl, void *procctx, PKT_encrypted *ed, DEK *dek, + int *compliance_error) { (void)ctrl; (void)procctx; (void)ed; (void)dek; + (void)compliance_error; return GPG_ERR_GENERAL; } |