diff options
Diffstat (limited to 'g10/test-stubs.c')
-rw-r--r-- | g10/test-stubs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/g10/test-stubs.c b/g10/test-stubs.c index 09737c4af..f0ce10b38 100644 --- a/g10/test-stubs.c +++ b/g10/test-stubs.c @@ -341,13 +341,14 @@ check_secret_key (PKT_public_key *pk, int n) */ DEK * passphrase_to_dek (int cipher_algo, STRING2KEY *s2k, int create, int nocache, - const char *tmp, int *canceled) + const char *tmp, unsigned int flags, int *canceled) { (void)cipher_algo; (void)s2k; (void)create; (void)nocache; (void)tmp; + (void)flags; if (canceled) *canceled = 0; |