summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJakub Jelen <jjelen@redhat.com>2022-08-16 20:40:40 +0200
committerNIIBE Yutaka <gniibe@fsij.org>2022-08-23 15:47:58 +0900
commit0d69847e41e1803654180544fffd4cba3f49cb12 (patch)
tree8360e7241085037463626743eb35c920755de22c /src
parentaab1d63e4def41593312f76de016c885ffafecde (diff)
downloadlibgcrypt-0d69847e41e1803654180544fffd4cba3f49cb12.tar.gz
gcrypt.h: Fix function name in comment.
Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Diffstat (limited to 'src')
-rw-r--r--src/gcrypt.h.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gcrypt.h.in b/src/gcrypt.h.in
index d6a1d516..60bcb6d1 100644
--- a/src/gcrypt.h.in
+++ b/src/gcrypt.h.in
@@ -1076,7 +1076,8 @@ gcry_error_t gcry_cipher_checktag (gcry_cipher_hd_t hd, const void *intag,
cipher handle H. */
#define gcry_cipher_sync(h) gcry_cipher_ctl( (h), GCRYCTL_CFB_SYNC, NULL, 0)
-/* Enable or disable CTS in future calls to gcry_encrypt(). CBC mode only. */
+/* Enable or disable CTS in future calls to gcry_cipher_encrypt().
+ * CBC mode only. */
#define gcry_cipher_cts(h,on) gcry_cipher_ctl( (h), GCRYCTL_SET_CBC_CTS, \
NULL, on )