aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2016-07-10 00:59:23 +0200
committerRich Salz <rsalz@openssl.org>2016-07-25 08:20:00 -0400
commitc7d13c138c0aaaa6bff867b5137cf1e74950f53a (patch)
tree477a208b37e5f81b5266071236f677f50848269d /doc
parent7569362ebb3fcc3a0d417978d36dd26f69194d33 (diff)
downloadopenssl-c7d13c138c0aaaa6bff867b5137cf1e74950f53a.tar.gz
Constify X509|X509_CRL|X509_REVOKED_get_ext
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1300)
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/X509v3_get_ext_by_NID.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/crypto/X509v3_get_ext_by_NID.pod b/doc/crypto/X509v3_get_ext_by_NID.pod
index fefdf9e5d6..eeb5155737 100644
--- a/doc/crypto/X509v3_get_ext_by_NID.pod
+++ b/doc/crypto/X509v3_get_ext_by_NID.pod
@@ -31,7 +31,7 @@ X509_REVOKED_add_ext - extension stack utility functions
X509_EXTENSION *ex, int loc);
int X509_get_ext_count(const X509 *x);
- X509_EXTENSION *X509_get_ext(X509 *x, int loc);
+ X509_EXTENSION *X509_get_ext(const X509 *x, int loc);
int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos);
int X509_get_ext_by_OBJ(const X509 *x, ASN1_OBJECT *obj, int lastpos);
int X509_get_ext_by_critical(const X509 *x, int crit, int lastpos);
@@ -39,7 +39,7 @@ X509_REVOKED_add_ext - extension stack utility functions
int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
int X509_CRL_get_ext_count(const X509_CRL *x);
- X509_EXTENSION *X509_CRL_get_ext(X509_CRL *x, int loc);
+ X509_EXTENSION *X509_CRL_get_ext(const X509_CRL *x, int loc);
int X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid, int lastpos);
int X509_CRL_get_ext_by_OBJ(const X509_CRL *x, ASN1_OBJECT *obj, int lastpos);
int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit, int lastpos);
@@ -47,7 +47,7 @@ X509_REVOKED_add_ext - extension stack utility functions
int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc);
int X509_REVOKED_get_ext_count(const X509_REVOKED *x);
- X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *x, int loc);
+ X509_EXTENSION *X509_REVOKED_get_ext(const X509_REVOKED *x, int loc);
int X509_REVOKED_get_ext_by_NID(const X509_REVOKED *x, int nid, int lastpos);
int X509_REVOKED_get_ext_by_OBJ(const X509_REVOKED *x, ASN1_OBJECT *obj,
int lastpos);