summaryrefslogtreecommitdiffstats
path: root/crypto/rsa/rsa_lib.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2016-06-26 21:55:03 +0200
committerAndy Polyakov <appro@openssl.org>2016-06-27 23:31:55 +0200
commite0685d2473a88056e848900abaec3e19b8a447d3 (patch)
treedfdc498bde3870313f6043f74745116cdb1a3fb6 /crypto/rsa/rsa_lib.c
parentdbbb6a87a716765f4f9ef9fe48b634c23bbe8636 (diff)
rsa/rsa_lib.c: const-ify RSA_get0_engine().
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/rsa/rsa_lib.c')
-rw-r--r--crypto/rsa/rsa_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rsa/rsa_lib.c b/crypto/rsa/rsa_lib.c
index 14750d177e..48e9100a97 100644
--- a/crypto/rsa/rsa_lib.c
+++ b/crypto/rsa/rsa_lib.c
@@ -304,7 +304,7 @@ void RSA_set_flags(RSA *r, int flags)
r->flags |= flags;
}
-ENGINE *RSA_get0_engine(RSA *r)
+ENGINE *RSA_get0_engine(const RSA *r)
{
return r->engine;
}