diff options
Diffstat (limited to 'g10/gpgv.c')
-rw-r--r-- | g10/gpgv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/g10/gpgv.c b/g10/gpgv.c index c17870c66..71adb0488 100644 --- a/g10/gpgv.c +++ b/g10/gpgv.c @@ -584,13 +584,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; |