diff options
Diffstat (limited to 'g10/test-stubs.c')
-rw-r--r-- | g10/test-stubs.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/g10/test-stubs.c b/g10/test-stubs.c index f0ce10b38..2ae4a4183 100644 --- a/g10/test-stubs.c +++ b/g10/test-stubs.c @@ -306,12 +306,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; } |