summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2008-03-10 16:13:48 +0100
committerSimon Josefsson <simon@josefsson.org>2008-03-10 16:13:48 +0100
commitba1f7d9664e3d3bc401fd5bbde7afa5bee5d051b (patch)
treeabce094a7acb258d5a66999b33d67ebe8cac7865
parent509c2110eb7ee09fe2508e9f5d539346c4859e5d (diff)
downloadgnutls-ba1f7d9664e3d3bc401fd5bbde7afa5bee5d051b.tar.gz
Finish renaming of export x509/openpgp functions.
In particular, gnutls_certificate_get_x509_cas, gnutls_certificate_get_x509_crls, and gnutls_certificate_get_openpgp_keyring.
-rw-r--r--includes/gnutls/gnutls.h.in16
1 files changed, 8 insertions, 8 deletions
diff --git a/includes/gnutls/gnutls.h.in b/includes/gnutls/gnutls.h.in
index 525f52efe3..5ce8f35f93 100644
--- a/includes/gnutls/gnutls.h.in
+++ b/includes/gnutls/gnutls.h.in
@@ -727,16 +727,16 @@ extern "C"
gnutls_x509_crl_t * crl_list,
int crl_list_size);
- void gnutls_certificate_export_x509_cas (gnutls_certificate_credentials_t sc,
- gnutls_x509_crt_t **x509_ca_list,
- unsigned int* ncas);
+ void gnutls_certificate_get_x509_cas (gnutls_certificate_credentials_t sc,
+ gnutls_x509_crt_t **x509_ca_list,
+ unsigned int* ncas);
- void gnutls_certificate_export_x509_crls (gnutls_certificate_credentials_t sc,
- gnutls_x509_crl_t **x509_crl_list,
- unsigned int* ncrls);
+ void gnutls_certificate_get_x509_crls (gnutls_certificate_credentials_t sc,
+ gnutls_x509_crl_t **x509_crl_list,
+ unsigned int* ncrls);
- void gnutls_certificate_export_openpgp_keyring (gnutls_certificate_credentials_t sc,
- gnutls_openpgp_keyring_t *keyring);
+ void gnutls_certificate_get_openpgp_keyring (gnutls_certificate_credentials_t sc,
+ gnutls_openpgp_keyring_t *keyring);
/* global state functions
*/