summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2007-05-26 18:44:14 +0000
committerSimon Josefsson <simon@josefsson.org>2007-05-26 18:44:14 +0000
commitd62143d60569e2d5a16a61a7f6dd69c0ce28ab63 (patch)
tree3eb907b1544b3ae9cddf1539741460438a08481a
parenta36f3b4db9f50200427e14690012439c2df3fa02 (diff)
downloadgnutls-d62143d60569e2d5a16a61a7f6dd69c0ce28ab63.tar.gz
Properly back-port patch.
-rw-r--r--lib/x509/x509.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/x509/x509.c b/lib/x509/x509.c
index c5a6ae97ed..5325b32a5f 100644
--- a/lib/x509/x509.c
+++ b/lib/x509/x509.c
@@ -1266,7 +1266,7 @@ cleanup:
}
/**
- * _gnutls_x509_crt_get_raw_issuer_dn - This function returns the issuer's DN DER encoded
+ * gnutls_x509_crt_get_raw_issuer_dn - This function returns the issuer's DN DER encoded
* @cert: should contain a gnutls_x509_crt_t structure
* @start: will hold the starting point of the DN
*
@@ -1284,7 +1284,7 @@ gnutls_x509_crt_get_raw_issuer_dn (gnutls_x509_crt_t cert,
}
/**
- * _gnutls_x509_crt_get_raw_dn - This function returns the subject's DN DER encoded
+ * gnutls_x509_crt_get_raw_dn - This function returns the subject's DN DER encoded
* @cert: should contain a gnutls_x509_crt_t structure
* @start: will hold the starting point of the DN
*
@@ -1554,7 +1554,7 @@ gnutls_x509_crt_check_revocation (gnutls_x509_crt_t cert,
return ret;
}
- ret = _gnutls_x509_crt_get_raw_issuer_dn (cert, &dn2);
+ ret = gnutls_x509_crt_get_raw_issuer_dn (cert, &dn2);
if (ret < 0)
{
gnutls_assert ();