summaryrefslogtreecommitdiffstats
path: root/crypto/asn1
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2016-07-08 00:43:15 +0200
committerRich Salz <rsalz@openssl.org>2016-07-25 08:20:00 -0400
commitdbf89a9b94b1ad813370577388b5ac692499a51f (patch)
tree1b266cface461b3188ffd50344b90235ef5c7261 /crypto/asn1
parent08275a29c10b23a5f38597d58f823c3ccb9540ab (diff)
Constify ASN1_buf_print
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 'crypto/asn1')
-rw-r--r--crypto/asn1/t_pkey.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/t_pkey.c b/crypto/asn1/t_pkey.c
index 7a570ee823..3b2c9df891 100644
--- a/crypto/asn1/t_pkey.c
+++ b/crypto/asn1/t_pkey.c
@@ -18,7 +18,7 @@
/* Maximum indent */
#define ASN1_PRINT_MAX_INDENT 128
-int ASN1_buf_print(BIO *bp, unsigned char *buf, size_t buflen, int indent)
+int ASN1_buf_print(BIO *bp, const unsigned char *buf, size_t buflen, int indent)
{
size_t i;