aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Schulte <[email protected]>2004-07-29 20:46:43 +0000
committerMoritz Schulte <[email protected]>2004-07-29 20:46:43 +0000
commitb2c86ab705a12227b5f2749168a5383db4ae65fb (patch)
tree43d25a1e941399d283cf3a0b46134b246539730a
parent2004-06-23 Marcus Brinkmann <[email protected]> (diff)
downloadgpgme-b2c86ab705a12227b5f2749168a5383db4ae65fb.tar.gz
gpgme-b2c86ab705a12227b5f2749168a5383db4ae65fb.zip
2004-07-29 Moritz Schulte <[email protected]>
* gpgme.texi (Verify): Fix gpgme_get_key example (ancient force_update argument was still there).
-rw-r--r--doc/ChangeLog5
-rw-r--r--doc/gpgme.texi2
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 7b780bf1..247b7b93 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2004-07-29 Moritz Schulte <[email protected]>
+
+ * gpgme.texi (Verify): Fix gpgme_get_key example (ancient
+ force_update argument was still there).
+
2004-06-08 Marcus Brinkmann <[email protected]>
* gpgme.texi (Listing Keys): Elaborate on the length restrictions
diff --git a/doc/gpgme.texi b/doc/gpgme.texi
index 76388b67..21f7fcd1 100644
--- a/doc/gpgme.texi
+++ b/doc/gpgme.texi
@@ -3989,7 +3989,7 @@ The function @code{gpgme_get_sig_key} is equivalent to:
if (!sig || idx)
return gpg_error (GPG_ERR_EOF);
- return gpgme_get_key (ctx, sig->fpr, r_key, 0, 0);
+ return gpgme_get_key (ctx, sig->fpr, r_key, 0);
@end example
@end deftypefun