diff options
author | Daniel Kahn Gillmor <[email protected]> | 2017-02-25 21:08:11 +0000 |
---|---|---|
committer | Daniel Kahn Gillmor <[email protected]> | 2017-02-26 06:43:38 +0000 |
commit | 5b49095b89b07591c69827df3973ffabfb3e97b8 (patch) | |
tree | 2de98020facd6a2b7be1a8a7b333483258bb65a3 | |
parent | python: Fix test. (diff) | |
download | gpgme-5b49095b89b07591c69827df3973ffabfb3e97b8.tar.gz gpgme-5b49095b89b07591c69827df3973ffabfb3e97b8.zip |
doc: Correct documentation for recp arg of gpgme_op_encrypt_sign_start
* doc/gpgme.texi (gpgme_op_encrypt_sign_start): recp is an array of
gpgme_key_t, not a single element.
Signed-off-by: Daniel Kahn Gillmor <[email protected]>
-rw-r--r-- | doc/gpgme.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/gpgme.texi b/doc/gpgme.texi index 1e2cde7d..d32a1242 100644 --- a/doc/gpgme.texi +++ b/doc/gpgme.texi @@ -5609,7 +5609,7 @@ The combined encrypt and sign operation is currently only available for the OpenPGP crypto engine. @end deftypefun -@deftypefun gpgme_error_t gpgme_op_encrypt_sign_start (@w{gpgme_ctx_t @var{ctx}}, @w{gpgme_key_t @var{recp}}, @w{gpgme_encrypt_flags_t @var{flags}}, @w{gpgme_data_t @var{plain}}, @w{gpgme_data_t @var{cipher}}) +@deftypefun gpgme_error_t gpgme_op_encrypt_sign_start (@w{gpgme_ctx_t @var{ctx}}, @w{gpgme_key_t @var{recp}[]}, @w{gpgme_encrypt_flags_t @var{flags}}, @w{gpgme_data_t @var{plain}}, @w{gpgme_data_t @var{cipher}}) The function @code{gpgme_op_encrypt_sign_start} initiates a @code{gpgme_op_encrypt_sign} operation. It can be completed by calling @code{gpgme_wait} on the context. @xref{Waiting For |