diff options
author | tb <> | 2023-03-05 13:12:53 +0000 |
---|---|---|
committer | tb <> | 2023-03-05 13:12:53 +0000 |
commit | 5956245d8bc01695eed9e4cb0c26f064a0f3612a (patch) | |
tree | 76b19fa54b61adaa3e661c0edbe7db993a361a76 /src/usr.bin/openssl/prime.c | |
parent | c2a5e2c0e56b83071de488b2ae2a4a6eedf749ad (diff) | |
download | openbsd-5956245d8bc01695eed9e4cb0c26f064a0f3612a.tar.gz openbsd-5956245d8bc01695eed9e4cb0c26f064a0f3612a.tar.bz2 openbsd-5956245d8bc01695eed9e4cb0c26f064a0f3612a.zip |
openssl: make all config structs static
These are per-app, so per-file. Most of them already are static, adjust
the rest of them.
Diffstat (limited to 'src/usr.bin/openssl/prime.c')
-rw-r--r-- | src/usr.bin/openssl/prime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/prime.c b/src/usr.bin/openssl/prime.c index d42ac20f1c..64b1953e33 100644 --- a/src/usr.bin/openssl/prime.c +++ b/src/usr.bin/openssl/prime.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: prime.c,v 1.15 2022/12/26 19:32:30 jmc Exp $ */ | 1 | /* $OpenBSD: prime.c,v 1.16 2023/03/05 13:12:53 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2004 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2004 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -56,7 +56,7 @@ | |||
56 | #include <openssl/bn.h> | 56 | #include <openssl/bn.h> |
57 | #include <openssl/err.h> | 57 | #include <openssl/err.h> |
58 | 58 | ||
59 | struct { | 59 | static struct { |
60 | int bits; | 60 | int bits; |
61 | int checks; | 61 | int checks; |
62 | int generate; | 62 | int generate; |