diff options
Diffstat (limited to 'g10/test-stubs.c')
-rw-r--r-- | g10/test-stubs.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/g10/test-stubs.c b/g10/test-stubs.c index 8b39484ef..9542d318b 100644 --- a/g10/test-stubs.c +++ b/g10/test-stubs.c @@ -57,10 +57,13 @@ g10_exit( int rc ) * We have to override the trustcheck from pkclist.c because * this utility assumes that all keys in the keyring are trustworthy */ -int -check_signatures_trust (ctrl_t ctrl, PKT_signature *sig) +gpg_error_t +check_signatures_trust (ctrl_t ctrl, kbnode_t kblock, + PKT_public_key *pk, PKT_signature *sig) { (void)ctrl; + (void)kblock; + (void)pk; (void)sig; return 0; } |