| commit | 2ac6115d9ee35308300b82d96078d03d81e7d320 | [log] [tgz] |
|---|---|---|
| author | Richard Levitte <levitte@openssl.org> | Tue Jun 14 15:49:05 2016 +0200 |
| committer | Richard Levitte <levitte@openssl.org> | Wed Jun 15 20:09:27 2016 +0200 |
| tree | d9c9c2af38b0b55f39dd418fa41650b102077971 | |
| parent | fd809cfdbd6e32b6b67b68c59f6d55fbed7a9327 [diff] [blame] |
Deal with the consequences of constifying getters Reviewed-by: Stephen Henson <steve@openssl.org> Reviewed-by: Emilia Käsper <emilia@openssl.org>
diff --git a/apps/rsa.c b/apps/rsa.c index 3a1195f..63e88e6 100644 --- a/apps/rsa.c +++ b/apps/rsa.c
@@ -214,7 +214,7 @@ } if (modulus) { - BIGNUM *n; + const BIGNUM *n; RSA_get0_key(rsa, &n, NULL, NULL); BIO_printf(out, "Modulus="); BN_print(out, n);