From 2ac6115d9ee35308300b82d96078d03d81e7d320 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 14 Jun 2016 15:49:05 +0200 Subject: Deal with the consequences of constifying getters MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Stephen Henson Reviewed-by: Emilia Käsper --- apps/dsa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/dsa.c') diff --git a/apps/dsa.c b/apps/dsa.c index ef50fede78..6ac9a40282 100644 --- a/apps/dsa.c +++ b/apps/dsa.c @@ -195,7 +195,7 @@ int dsa_main(int argc, char **argv) } if (modulus) { - BIGNUM *pub_key = NULL; + const BIGNUM *pub_key = NULL; DSA_get0_key(dsa, &pub_key, NULL); BIO_printf(out, "Public Key="); BN_print(out, pub_key); -- cgit v1.2.1