diff options
author | Werner Koch <[email protected]> | 2010-04-20 17:57:50 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-04-20 17:57:50 +0000 |
commit | 21b0a955be63dc69625194ece8557e79b6ad60c2 (patch) | |
tree | 97de4727b46f1f2b5dac30142e5a408c898d48fc /g10/gpgv.c | |
parent | Add missing file. (diff) | |
download | gnupg-21b0a955be63dc69625194ece8557e79b6ad60c2.tar.gz gnupg-21b0a955be63dc69625194ece8557e79b6ad60c2.zip |
Generating an OpenPGP key cia gpg-agent basically works.
Diffstat (limited to 'g10/gpgv.c')
-rw-r--r-- | g10/gpgv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/gpgv.c b/g10/gpgv.c index d6e49e368..ed3752f72 100644 --- a/g10/gpgv.c +++ b/g10/gpgv.c @@ -399,9 +399,9 @@ display_online_help (const char *keyword) * We don't use secret keys, but getkey.c links to this */ int -check_secret_key (PKT_secret_key *sk, int n) +check_secret_key (PKT_public_key *pk, int n) { - (void)sk; + (void)pk; (void)n; return G10ERR_GENERAL; } |