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/errstr.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/errstr.c')
-rw-r--r-- | src/usr.bin/openssl/errstr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/errstr.c b/src/usr.bin/openssl/errstr.c index 4d7ba02def..64f0141ba0 100644 --- a/src/usr.bin/openssl/errstr.c +++ b/src/usr.bin/openssl/errstr.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: errstr.c,v 1.8 2022/11/11 17:07:39 joshua Exp $ */ | 1 | /* $OpenBSD: errstr.c,v 1.9 2023/03/05 13:12:53 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 | * |
@@ -68,7 +68,7 @@ | |||
68 | #include <openssl/lhash.h> | 68 | #include <openssl/lhash.h> |
69 | #include <openssl/ssl.h> | 69 | #include <openssl/ssl.h> |
70 | 70 | ||
71 | struct { | 71 | static struct { |
72 | int stats; | 72 | int stats; |
73 | } errstr_config; | 73 | } errstr_config; |
74 | 74 | ||