diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2021-04-21 00:32:00 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2021-04-21 00:32:00 +0000 |
commit | 88c86f72e4e153fc5fec89b81f6b43078bf57a25 (patch) | |
tree | 9061e3c017db8b0c462881c1316a8a1267d0ed1d /usr.bin | |
parent | 70ff6b6703332b026bc4dfa8d14b6712f41dd1db (diff) |
Fix const in previous. Pointed out by asou
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/openssl/ecparam.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/openssl/ecparam.c b/usr.bin/openssl/ecparam.c index 35b157c3844..611eef314d5 100644 --- a/usr.bin/openssl/ecparam.c +++ b/usr.bin/openssl/ecparam.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ecparam.c,v 1.19 2021/04/20 17:08:08 tb Exp $ */ +/* $OpenBSD: ecparam.c,v 1.20 2021/04/21 00:31:59 tb Exp $ */ /* * Written by Nils Larsch for the OpenSSL project. */ @@ -87,10 +87,10 @@ #include <openssl/pem.h> #include <openssl/x509.h> -int EC_GROUP_get_curve_GF2m(EC_GROUP *, const BIGNUM *, const BIGNUM *, - const BIGNUM *, BN_CTX *); -int EC_GROUP_get_curve_GFp(EC_GROUP *, const BIGNUM *, const BIGNUM *, - const BIGNUM *, BN_CTX *); +int EC_GROUP_get_curve_GF2m(const EC_GROUP *, BIGNUM *, BIGNUM *, BIGNUM *, + BN_CTX *); +int EC_GROUP_get_curve_GFp(const EC_GROUP *, BIGNUM *, BIGNUM *, BIGNUM *, + BN_CTX *); static int ecparam_print_var(BIO *, BIGNUM *, const char *, int, unsigned char *); |