diff options
author | Marcus Brinkmann <[email protected]> | 2002-11-19 16:41:17 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2002-11-19 16:41:17 +0000 |
commit | dfc32a5441519cc6071ee5bf8e12abe4a29f5875 (patch) | |
tree | ddd7bd5bac88e29f9fa51f7836e27d8e97516c86 /gpgmeplug/gpgmeplug.c | |
parent | 2002-11-19 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-dfc32a5441519cc6071ee5bf8e12abe4a29f5875.tar.gz gpgme-dfc32a5441519cc6071ee5bf8e12abe4a29f5875.zip |
doc/
2002-11-19 Marcus Brinkmann <[email protected]>
* gpgme.texi (Generating Keys): Document new argument to
gpgme_op_genkey.
gpgme/
2002-11-19 Marcus Brinkmann <[email protected]>
* genkey.c: Only include <config.h> if [HAVE_CONFIG_H].
(struct genkey_result_s): Add new member FPR.
(_gpgme_release_genkey_result): Free RESULT->fpr if set.
(genkey_status_handler): Extract the fingerprint from the status
line.
(gpgme_op_genkey): Add new argument FPR and return the fingerprint
in it.
* gpgme.h: Adjust prototype of gpgme_op_genkey.
tests/
2002-11-19 Marcus Brinkmann <[email protected]>
* gpg/t-genkey.c (main): Add missing argument to gpgme_op_genkey
invocation.
CVSk: ----------------------------------------------------------------------
Diffstat (limited to '')
-rw-r--r-- | gpgmeplug/gpgmeplug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gpgmeplug/gpgmeplug.c b/gpgmeplug/gpgmeplug.c index 8391593c..8a916109 100644 --- a/gpgmeplug/gpgmeplug.c +++ b/gpgmeplug/gpgmeplug.c @@ -1802,7 +1802,7 @@ bool requestDecentralCertificate( const char* certparms, gpgme_set_protocol (ctx, GPGME_PROTOCOL_CMS); /* Don't ASCII-armor, the MUA will use base64 encoding */ /* gpgme_set_armor (ctx, 1); */ - err = gpgme_op_genkey (ctx, certparms, pub, NULL ); + err = gpgme_op_genkey (ctx, certparms, pub, NULL, NULL); fprintf( stderr, "3: gpgme returned %d\n", err ); if( err != GPGME_No_Error ) { gpgme_data_release( pub ); |