summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2016-07-09 00:08:03 +0200
committerRich Salz <rsalz@openssl.org>2016-07-25 08:20:00 -0400
commita6a283b394ef80aeb0866143d71f49bf2aa3e901 (patch)
tree7c7b050999753f7e6817f17e88b858486365dedc /include
parent333ed02c8a912f7c8b7dcf7ea8f1ff10e7a006c0 (diff)
Constify i2s_ASN1_INTEGER, X509V3_get_d2i
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 'include')
-rw-r--r--include/openssl/x509v3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/x509v3.h b/include/openssl/x509v3.h
index 8d38455806..495f9fa199 100644
--- a/include/openssl/x509v3.h
+++ b/include/openssl/x509v3.h
@@ -604,7 +604,7 @@ int X509V3_add_value_bool(const char *name, int asn1_bool,
STACK_OF(CONF_VALUE) **extlist);
int X509V3_add_value_int(const char *name, ASN1_INTEGER *aint,
STACK_OF(CONF_VALUE) **extlist);
-char *i2s_ASN1_INTEGER(X509V3_EXT_METHOD *meth, ASN1_INTEGER *aint);
+char *i2s_ASN1_INTEGER(X509V3_EXT_METHOD *meth, const ASN1_INTEGER *aint);
ASN1_INTEGER *s2i_ASN1_INTEGER(X509V3_EXT_METHOD *meth, const char *value);
char *i2s_ASN1_ENUMERATED(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint);
char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *meth,