diff options
author | tb <> | 2021-04-21 00:31:59 +0000 |
---|---|---|
committer | tb <> | 2021-04-21 00:31:59 +0000 |
commit | 82f5c0f3ecd6365b1fe8cbd40e7c8bf23ee55632 (patch) | |
tree | 617485885d35343091d9c68d4f47d53528e5d3e7 /src | |
parent | 1d11b9178d76ad4f080a805db2648af7bd8e6775 (diff) | |
download | openbsd-82f5c0f3ecd6365b1fe8cbd40e7c8bf23ee55632.tar.gz openbsd-82f5c0f3ecd6365b1fe8cbd40e7c8bf23ee55632.tar.bz2 openbsd-82f5c0f3ecd6365b1fe8cbd40e7c8bf23ee55632.zip |
Fix const in previous. Pointed out by asou
Diffstat (limited to 'src')
-rw-r--r-- | src/usr.bin/openssl/ecparam.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/usr.bin/openssl/ecparam.c b/src/usr.bin/openssl/ecparam.c index 35b157c384..611eef314d 100644 --- a/src/usr.bin/openssl/ecparam.c +++ b/src/usr.bin/openssl/ecparam.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecparam.c,v 1.19 2021/04/20 17:08:08 tb Exp $ */ | 1 | /* $OpenBSD: ecparam.c,v 1.20 2021/04/21 00:31:59 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Nils Larsch for the OpenSSL project. | 3 | * Written by Nils Larsch for the OpenSSL project. |
4 | */ | 4 | */ |
@@ -87,10 +87,10 @@ | |||
87 | #include <openssl/pem.h> | 87 | #include <openssl/pem.h> |
88 | #include <openssl/x509.h> | 88 | #include <openssl/x509.h> |
89 | 89 | ||
90 | int EC_GROUP_get_curve_GF2m(EC_GROUP *, const BIGNUM *, const BIGNUM *, | 90 | int EC_GROUP_get_curve_GF2m(const EC_GROUP *, BIGNUM *, BIGNUM *, BIGNUM *, |
91 | const BIGNUM *, BN_CTX *); | 91 | BN_CTX *); |
92 | int EC_GROUP_get_curve_GFp(EC_GROUP *, const BIGNUM *, const BIGNUM *, | 92 | int EC_GROUP_get_curve_GFp(const EC_GROUP *, BIGNUM *, BIGNUM *, BIGNUM *, |
93 | const BIGNUM *, BN_CTX *); | 93 | BN_CTX *); |
94 | 94 | ||
95 | static int ecparam_print_var(BIO *, BIGNUM *, const char *, int, | 95 | static int ecparam_print_var(BIO *, BIGNUM *, const char *, int, |
96 | unsigned char *); | 96 | unsigned char *); |