aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2002-11-19 16:41:17 +0000
committerMarcus Brinkmann <[email protected]>2002-11-19 16:41:17 +0000
commitdfc32a5441519cc6071ee5bf8e12abe4a29f5875 (patch)
treeddd7bd5bac88e29f9fa51f7836e27d8e97516c86 /tests
parent2002-11-19 Marcus Brinkmann <[email protected]> (diff)
downloadgpgme-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 'tests')
-rw-r--r--tests/ChangeLog5
-rw-r--r--tests/gpg/t-genkey.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog
index 3ef332ad..9efd160d 100644
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -1,3 +1,8 @@
+2002-11-19 Marcus Brinkmann <[email protected]>
+
+ * gpg/t-genkey.c (main): Add missing argument to gpgme_op_genkey
+ invocation.
+
2002-10-09 Marcus Brinkmann <[email protected]>
* gpg/t-decrypt.c (print_data): Update to new gpgme_data_read
diff --git a/tests/gpg/t-genkey.c b/tests/gpg/t-genkey.c
index 09206fb4..4bb59b2d 100644
--- a/tests/gpg/t-genkey.c
+++ b/tests/gpg/t-genkey.c
@@ -70,7 +70,7 @@ main (int argc, char **argv )
if (!parms)
exit (8);
sprintf (parms, format, ++count );
- err = gpgme_op_genkey (ctx, parms, NULL, NULL );
+ err = gpgme_op_genkey (ctx, parms, NULL, NULL, NULL);
fail_if_err (err);
free (parms);