From dfc32a5441519cc6071ee5bf8e12abe4a29f5875 Mon Sep 17 00:00:00 2001 From: Marcus Brinkmann Date: Tue, 19 Nov 2002 16:41:17 +0000 Subject: doc/ 2002-11-19 Marcus Brinkmann * gpgme.texi (Generating Keys): Document new argument to gpgme_op_genkey. gpgme/ 2002-11-19 Marcus Brinkmann * genkey.c: Only include 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 * gpg/t-genkey.c (main): Add missing argument to gpgme_op_genkey invocation. CVSk: ---------------------------------------------------------------------- --- gpgmeplug/ChangeLog | 5 +++++ gpgmeplug/gpgmeplug.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'gpgmeplug') diff --git a/gpgmeplug/ChangeLog b/gpgmeplug/ChangeLog index d9c6d9d4..f098ba16 100644 --- a/gpgmeplug/ChangeLog +++ b/gpgmeplug/ChangeLog @@ -1,3 +1,8 @@ +2002-11-19 Marcus Brinkmann + + * gpgmeplug.c (requestDecentralCertificate): Add new argument to + gpgme_op_genkey invocation. + 2002-10-12 Marcus Brinkmann * gpgmeplug.c (checkMessageSignature): Update call to 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 ); -- cgit v1.2.3