summaryrefslogtreecommitdiff
path: root/src/usr.bin/openssl/rsautl.c
diff options
context:
space:
mode:
authortb <>2023-03-05 13:12:53 +0000
committertb <>2023-03-05 13:12:53 +0000
commit5956245d8bc01695eed9e4cb0c26f064a0f3612a (patch)
tree76b19fa54b61adaa3e661c0edbe7db993a361a76 /src/usr.bin/openssl/rsautl.c
parentc2a5e2c0e56b83071de488b2ae2a4a6eedf749ad (diff)
downloadopenbsd-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/rsautl.c')
-rw-r--r--src/usr.bin/openssl/rsautl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/rsautl.c b/src/usr.bin/openssl/rsautl.c
index c3af915635..2916b2d9a0 100644
--- a/src/usr.bin/openssl/rsautl.c
+++ b/src/usr.bin/openssl/rsautl.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: rsautl.c,v 1.19 2022/11/11 17:07:39 joshua Exp $ */ 1/* $OpenBSD: rsautl.c,v 1.20 2023/03/05 13:12:53 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2000. 3 * project 2000.
4 */ 4 */
@@ -75,7 +75,7 @@
75#define KEY_PUBKEY 2 75#define KEY_PUBKEY 2
76#define KEY_CERT 3 76#define KEY_CERT 3
77 77
78struct { 78static struct {
79 int asn1parse; 79 int asn1parse;
80 int hexdump; 80 int hexdump;
81 char *infile; 81 char *infile;