aboutsummaryrefslogtreecommitdiff
path: root/crypto/asn1/f_int.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-08-15 12:41:25 +0100
committerDr. Stephen Henson <steve@openssl.org>2016-08-18 11:59:39 +0100
commit604f6eff31a3837abd3d96a2a41a3b269df757c4 (patch)
tree2bc105f172a6af76b9f397f4179d48dc3eaf41a2 /crypto/asn1/f_int.c
parentdd8e5a573272d369cb6dd21592e2b1b1d3941939 (diff)
downloadopenssl-604f6eff31a3837abd3d96a2a41a3b269df757c4.zip
openssl-604f6eff31a3837abd3d96a2a41a3b269df757c4.tar.gz
openssl-604f6eff31a3837abd3d96a2a41a3b269df757c4.tar.bz2
Convert X509_REVOKED* functions to use const getters
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Stephen Henson <steve@openssl.org>
Diffstat (limited to 'crypto/asn1/f_int.c')
-rw-r--r--crypto/asn1/f_int.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asn1/f_int.c b/crypto/asn1/f_int.c
index f1ed6bb..c203480 100644
--- a/crypto/asn1/f_int.c
+++ b/crypto/asn1/f_int.c
@@ -13,7 +13,7 @@
#include <openssl/buffer.h>
#include <openssl/asn1.h>
-int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a)
+int i2a_ASN1_INTEGER(BIO *bp, const ASN1_INTEGER *a)
{
int i, n = 0;
static const char *h = "0123456789ABCDEF";