summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxuraoqing <xuraoqing@huawei.com>2023-03-22 11:46:55 +0800
committerxuraoqing <xuraoqing@huawei.com>2023-03-22 11:46:55 +0800
commit85b0a5d424f2f01314f0df650591d7434ef0b0f7 (patch)
treea70953a10adca068f706a2804c95784e5cfcbfab
parentfcf6cb00e03d4310207356ba36d8b80955fb6f62 (diff)
downloadgnutls-85b0a5d424f2f01314f0df650591d7434ef0b0f7.tar.gz
fix incorrect parameter description of crl import function
Signed-off-by: xuraoqing <xuraoqing@huawei.com>
-rw-r--r--lib/x509/crl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/x509/crl.c b/lib/x509/crl.c
index f6c6089af7..42367dba9c 100644
--- a/lib/x509/crl.c
+++ b/lib/x509/crl.c
@@ -1233,11 +1233,11 @@ gnutls_x509_crl_get_extension_data(gnutls_x509_crl_t crl, unsigned indx,
* gnutls_x509_crl_list_import2:
* @crls: Will contain the parsed crl list.
* @size: It will contain the size of the list.
- * @data: The PEM encoded CRL.
+ * @data: The CRL data.
* @format: One of DER or PEM.
* @flags: must be (0) or an OR'd sequence of gnutls_certificate_import_flags.
*
- * This function will convert the given PEM encoded CRL list
+ * This function will convert the given CRL list
* to the native gnutls_x509_crl_t format. The output will be stored
* in @crls. They will be automatically initialized.
*
@@ -1294,11 +1294,11 @@ gnutls_x509_crl_list_import2(gnutls_x509_crl_t ** crls,
* gnutls_x509_crl_list_import:
* @crls: Indicates where the parsed CRLs will be copied to. Must not be initialized.
* @crl_max: Initially must hold the maximum number of crls. It will be updated with the number of crls available.
- * @data: The PEM encoded CRLs
+ * @data: The CRL data
* @format: One of DER or PEM.
* @flags: must be (0) or an OR'd sequence of gnutls_certificate_import_flags.
*
- * This function will convert the given PEM encoded CRL list
+ * This function will convert the given CRL list
* to the native gnutls_x509_crl_t format. The output will be stored
* in @crls. They will be automatically initialized.
*