summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2011-02-20 19:37:49 +0100
committerSimon Josefsson <simon@josefsson.org>2011-02-20 19:37:49 +0100
commit888c05d028dc2160252aa8de5e19db19022597cb (patch)
treec481d7dd6ef1a8c5897efb534a8d0b320d809942
parentbfa381764fdea69ac0e6421793804f91b7284ccc (diff)
downloadgnutls-888c05d028dc2160252aa8de5e19db19022597cb.tar.gz
Doc fix of new function.
-rw-r--r--lib/x509/crl.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/x509/crl.c b/lib/x509/crl.c
index dc6b99cc61..c55e0d0b6f 100644
--- a/lib/x509/crl.c
+++ b/lib/x509/crl.c
@@ -533,18 +533,20 @@ gnutls_x509_crl_get_crt_serial (gnutls_x509_crl_t crl, int indx,
}
/**
- * gnutls_x509_crl_get_raw_issuer_dn - This function returns the issuer's DN DER encoded
+ * gnutls_x509_crl_get_raw_issuer_dn:
* @crl: should contain a gnutls_x509_crl_t structure
* @dn: will hold the starting point of the DN
*
- * This function will return a pointer to the DER encoded DN structure and
- * the length.
+ * This function will return a pointer to the DER encoded DN structure
+ * and the length.
*
* Returns a negative value on error, and zero on success.
+ *
+ * Since: 2.12.0
**/
int
gnutls_x509_crl_get_raw_issuer_dn (gnutls_x509_crl_t crl,
- gnutls_datum_t * dn)
+ gnutls_datum_t * dn)
{
ASN1_TYPE c2 = ASN1_TYPE_EMPTY;
int result, len1;