diff options
author | tb <> | 2024-05-09 20:57:49 +0000 |
---|---|---|
committer | tb <> | 2024-05-09 20:57:49 +0000 |
commit | 5e9e413e2dc289b667689d675bd96d6801efa375 (patch) | |
tree | 97173d7dffcd7c3ec627565968926f3dede58fb7 /src | |
parent | c3bc07d8090f3567d7d5ac9be7bac3e82662d41f (diff) | |
download | openbsd-5e9e413e2dc289b667689d675bd96d6801efa375.tar.gz openbsd-5e9e413e2dc289b667689d675bd96d6801efa375.tar.bz2 openbsd-5e9e413e2dc289b667689d675bd96d6801efa375.zip |
Make the openssl_dsa_meth static const
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/dsa/dsa_ossl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/dsa/dsa_ossl.c b/src/lib/libcrypto/dsa/dsa_ossl.c index 3dad205a27..943d038796 100644 --- a/src/lib/libcrypto/dsa/dsa_ossl.c +++ b/src/lib/libcrypto/dsa/dsa_ossl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dsa_ossl.c,v 1.54 2024/05/09 20:56:52 tb Exp $ */ | 1 | /* $OpenBSD: dsa_ossl.c,v 1.55 2024/05/09 20:57:49 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -412,7 +412,7 @@ dsa_finish(DSA *dsa) | |||
412 | return 1; | 412 | return 1; |
413 | } | 413 | } |
414 | 414 | ||
415 | static DSA_METHOD openssl_dsa_meth = { | 415 | static const DSA_METHOD openssl_dsa_meth = { |
416 | .name = "OpenSSL DSA method", | 416 | .name = "OpenSSL DSA method", |
417 | .dsa_do_sign = dsa_do_sign, | 417 | .dsa_do_sign = dsa_do_sign, |
418 | .dsa_sign_setup = dsa_sign_setup, | 418 | .dsa_sign_setup = dsa_sign_setup, |