From 6827cc3b1755c493f24f9fd40b88404497bc961d Mon Sep 17 00:00:00 2001 From: tb <> Date: Sat, 19 May 2018 10:50:08 +0000 Subject: Add a const qualifier to the aint argument of X509V3_add_value_int() Tested in a bulk build by sthen ok jsing --- src/lib/libcrypto/x509v3/v3_utl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/libcrypto/x509v3/v3_utl.c') diff --git a/src/lib/libcrypto/x509v3/v3_utl.c b/src/lib/libcrypto/x509v3/v3_utl.c index 07c7881581..4f8d16fd00 100644 --- a/src/lib/libcrypto/x509v3/v3_utl.c +++ b/src/lib/libcrypto/x509v3/v3_utl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: v3_utl.c,v 1.30 2018/05/19 10:37:02 tb Exp $ */ +/* $OpenBSD: v3_utl.c,v 1.31 2018/05/19 10:50:08 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. */ @@ -230,7 +230,7 @@ s2i_ASN1_INTEGER(X509V3_EXT_METHOD *method, const char *value) } int -X509V3_add_value_int(const char *name, ASN1_INTEGER *aint, +X509V3_add_value_int(const char *name, const ASN1_INTEGER *aint, STACK_OF(CONF_VALUE) **extlist) { char *strtmp; -- cgit v1.2.3-55-g6feb