diff options
author | tb <> | 2022-11-26 17:23:18 +0000 |
---|---|---|
committer | tb <> | 2022-11-26 17:23:18 +0000 |
commit | 246954626bd75b061be0645ab9659db51b2c4e38 (patch) | |
tree | d2f78bc27178372f03f15f36ae93b967a1e203d7 /src/lib | |
parent | db814f9b2a52dd12a467bdc126ab9750901835bb (diff) | |
download | openbsd-246954626bd75b061be0645ab9659db51b2c4e38.tar.gz openbsd-246954626bd75b061be0645ab9659db51b2c4e38.tar.bz2 openbsd-246954626bd75b061be0645ab9659db51b2c4e38.zip |
Make header guards of internal headers consistent
Not all of them, only those that didn't leak into a public header...
Yes.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/aes/aes_local.h | 8 | ||||
-rw-r--r-- | src/lib/libcrypto/bn/bn_local.h | 8 | ||||
-rw-r--r-- | src/lib/libcrypto/camellia/cmll_local.h | 8 | ||||
-rw-r--r-- | src/lib/libcrypto/cms/cms_local.h | 8 | ||||
-rw-r--r-- | src/lib/libcrypto/constant_time.h | 6 | ||||
-rw-r--r-- | src/lib/libcrypto/ecdh/ech_local.h | 8 | ||||
-rw-r--r-- | src/lib/libcrypto/ecdsa/ecs_local.h | 8 | ||||
-rw-r--r-- | src/lib/libcrypto/evp/evp_local.h | 8 | ||||
-rw-r--r-- | src/lib/libcrypto/gost/gost_local.h | 8 | ||||
-rw-r--r-- | src/lib/libcrypto/pkcs12/pkcs12_local.h | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/sm2/sm2_local.h | 9 | ||||
-rw-r--r-- | src/lib/libcrypto/ts/ts_local.h | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/ui/ui_local.h | 8 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/x509_local.h | 8 | ||||
-rw-r--r-- | src/lib/libssl/dtls_local.h | 4 | ||||
-rw-r--r-- | src/lib/libssl/ssl_local.h | 4 |
16 files changed, 55 insertions, 56 deletions
diff --git a/src/lib/libcrypto/aes/aes_local.h b/src/lib/libcrypto/aes/aes_local.h index 4c984e0de6..ef74e71319 100644 --- a/src/lib/libcrypto/aes/aes_local.h +++ b/src/lib/libcrypto/aes/aes_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: aes_local.h,v 1.1 2022/11/26 16:08:50 tb Exp $ */ | 1 | /* $OpenBSD: aes_local.h,v 1.2 2022/11/26 17:23:17 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -49,8 +49,8 @@ | |||
49 | * | 49 | * |
50 | */ | 50 | */ |
51 | 51 | ||
52 | #ifndef HEADER_AES_LOCL_H | 52 | #ifndef HEADER_AES_LOCAL_H |
53 | #define HEADER_AES_LOCL_H | 53 | #define HEADER_AES_LOCAL_H |
54 | 54 | ||
55 | #include <openssl/opensslconf.h> | 55 | #include <openssl/opensslconf.h> |
56 | 56 | ||
@@ -80,4 +80,4 @@ typedef unsigned char u8; | |||
80 | 80 | ||
81 | __END_HIDDEN_DECLS | 81 | __END_HIDDEN_DECLS |
82 | 82 | ||
83 | #endif /* !HEADER_AES_LOCL_H */ | 83 | #endif /* !HEADER_AES_LOCAL_H */ |
diff --git a/src/lib/libcrypto/bn/bn_local.h b/src/lib/libcrypto/bn/bn_local.h index 73d1f0a215..7bddcb21b9 100644 --- a/src/lib/libcrypto/bn/bn_local.h +++ b/src/lib/libcrypto/bn/bn_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bn_local.h,v 1.1 2022/11/26 16:08:51 tb Exp $ */ | 1 | /* $OpenBSD: bn_local.h,v 1.2 2022/11/26 17:23:17 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 | * |
@@ -109,8 +109,8 @@ | |||
109 | * | 109 | * |
110 | */ | 110 | */ |
111 | 111 | ||
112 | #ifndef HEADER_BN_LCL_H | 112 | #ifndef HEADER_BN_LOCAL_H |
113 | #define HEADER_BN_LCL_H | 113 | #define HEADER_BN_LOCAL_H |
114 | 114 | ||
115 | #include <openssl/opensslconf.h> | 115 | #include <openssl/opensslconf.h> |
116 | 116 | ||
@@ -564,4 +564,4 @@ int bn_is_perfect_square(int *out_perfect, const BIGNUM *n, BN_CTX *ctx); | |||
564 | int bn_is_prime_bpsw(int *is_prime, const BIGNUM *n, BN_CTX *in_ctx); | 564 | int bn_is_prime_bpsw(int *is_prime, const BIGNUM *n, BN_CTX *in_ctx); |
565 | 565 | ||
566 | __END_HIDDEN_DECLS | 566 | __END_HIDDEN_DECLS |
567 | #endif | 567 | #endif /* !HEADER_BN_LOCAL_H */ |
diff --git a/src/lib/libcrypto/camellia/cmll_local.h b/src/lib/libcrypto/camellia/cmll_local.h index b8bef6fb75..ed9807c069 100644 --- a/src/lib/libcrypto/camellia/cmll_local.h +++ b/src/lib/libcrypto/camellia/cmll_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_local.h,v 1.1 2022/11/26 16:08:51 tb Exp $ */ | 1 | /* $OpenBSD: cmll_local.h,v 1.2 2022/11/26 17:23:17 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) . | 3 | * Copyright 2006 NTT (Nippon Telegraph and Telephone Corporation) . |
4 | * ALL RIGHTS RESERVED. | 4 | * ALL RIGHTS RESERVED. |
@@ -65,8 +65,8 @@ | |||
65 | * ==================================================================== | 65 | * ==================================================================== |
66 | */ | 66 | */ |
67 | 67 | ||
68 | #ifndef HEADER_CAMELLIA_LOCL_H | 68 | #ifndef HEADER_CAMELLIA_LOCAL_H |
69 | #define HEADER_CAMELLIA_LOCL_H | 69 | #define HEADER_CAMELLIA_LOCAL_H |
70 | 70 | ||
71 | __BEGIN_HIDDEN_DECLS | 71 | __BEGIN_HIDDEN_DECLS |
72 | 72 | ||
@@ -86,4 +86,4 @@ void Camellia_DecryptBlock(int keyBitLength, const u8 ciphertext[], | |||
86 | 86 | ||
87 | __END_HIDDEN_DECLS | 87 | __END_HIDDEN_DECLS |
88 | 88 | ||
89 | #endif /* #ifndef HEADER_CAMELLIA_LOCL_H */ | 89 | #endif /* !HEADER_CAMELLIA_LOCAL_H */ |
diff --git a/src/lib/libcrypto/cms/cms_local.h b/src/lib/libcrypto/cms/cms_local.h index 29e8825b08..65a684e9b6 100644 --- a/src/lib/libcrypto/cms/cms_local.h +++ b/src/lib/libcrypto/cms/cms_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cms_local.h,v 1.1 2022/11/26 16:08:51 tb Exp $ */ | 1 | /* $OpenBSD: cms_local.h,v 1.2 2022/11/26 17:23:17 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
4 | * project. | 4 | * project. |
@@ -52,8 +52,8 @@ | |||
52 | * ==================================================================== | 52 | * ==================================================================== |
53 | */ | 53 | */ |
54 | 54 | ||
55 | #ifndef HEADER_CMS_LCL_H | 55 | #ifndef HEADER_CMS_LOCAL_H |
56 | #define HEADER_CMS_LCL_H | 56 | #define HEADER_CMS_LOCAL_H |
57 | 57 | ||
58 | #include <openssl/x509.h> | 58 | #include <openssl/x509.h> |
59 | 59 | ||
@@ -481,4 +481,4 @@ extern const ASN1_ITEM CMS_RevocationInfoChoice_it; | |||
481 | extern const ASN1_ITEM CMS_SignedData_it; | 481 | extern const ASN1_ITEM CMS_SignedData_it; |
482 | extern const ASN1_ITEM CMS_CompressedData_it; | 482 | extern const ASN1_ITEM CMS_CompressedData_it; |
483 | 483 | ||
484 | #endif | 484 | #endif /* !HEADER_CMS_LOCAL_H */ |
diff --git a/src/lib/libcrypto/constant_time.h b/src/lib/libcrypto/constant_time.h index 2d511cc0bf..6546526b77 100644 --- a/src/lib/libcrypto/constant_time.h +++ b/src/lib/libcrypto/constant_time.h | |||
@@ -44,8 +44,8 @@ | |||
44 | * [including the GNU Public Licence.] | 44 | * [including the GNU Public Licence.] |
45 | */ | 45 | */ |
46 | 46 | ||
47 | #ifndef HEADER_CONSTANT_TIME_LOCL_H | 47 | #ifndef HEADER_CONSTANT_TIME_H |
48 | # define HEADER_CONSTANT_TIME_LOCL_H | 48 | #define HEADER_CONSTANT_TIME_H |
49 | 49 | ||
50 | __BEGIN_HIDDEN_DECLS | 50 | __BEGIN_HIDDEN_DECLS |
51 | 51 | ||
@@ -204,4 +204,4 @@ void err_clear_last_constant_time(int clear); | |||
204 | 204 | ||
205 | __END_HIDDEN_DECLS | 205 | __END_HIDDEN_DECLS |
206 | 206 | ||
207 | #endif /* HEADER_CONSTANT_TIME_LOCL_H */ | 207 | #endif /* !HEADER_CONSTANT_TIME_H */ |
diff --git a/src/lib/libcrypto/ecdh/ech_local.h b/src/lib/libcrypto/ecdh/ech_local.h index 33dd943c5a..3c2a2673c5 100644 --- a/src/lib/libcrypto/ecdh/ech_local.h +++ b/src/lib/libcrypto/ecdh/ech_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ech_local.h,v 1.1 2022/11/26 16:08:52 tb Exp $ */ | 1 | /* $OpenBSD: ech_local.h,v 1.2 2022/11/26 17:23:17 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -53,8 +53,8 @@ | |||
53 | * | 53 | * |
54 | */ | 54 | */ |
55 | 55 | ||
56 | #ifndef HEADER_ECH_LOCL_H | 56 | #ifndef HEADER_ECH_LOCAL_H |
57 | #define HEADER_ECH_LOCL_H | 57 | #define HEADER_ECH_LOCAL_H |
58 | 58 | ||
59 | #include <openssl/ecdh.h> | 59 | #include <openssl/ecdh.h> |
60 | 60 | ||
@@ -96,4 +96,4 @@ int ecdh_KDF_X9_63(unsigned char *out, size_t outlen, const unsigned char *Z, | |||
96 | 96 | ||
97 | __END_HIDDEN_DECLS | 97 | __END_HIDDEN_DECLS |
98 | 98 | ||
99 | #endif /* HEADER_ECH_LOCL_H */ | 99 | #endif /* !HEADER_ECH_LOCAL_H */ |
diff --git a/src/lib/libcrypto/ecdsa/ecs_local.h b/src/lib/libcrypto/ecdsa/ecs_local.h index 69794dfefb..5cdf264557 100644 --- a/src/lib/libcrypto/ecdsa/ecs_local.h +++ b/src/lib/libcrypto/ecdsa/ecs_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecs_local.h,v 1.1 2022/11/26 16:08:52 tb Exp $ */ | 1 | /* $OpenBSD: ecs_local.h,v 1.2 2022/11/26 17:23:17 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Nils Larsch for the OpenSSL project | 3 | * Written by Nils Larsch for the OpenSSL project |
4 | */ | 4 | */ |
@@ -56,8 +56,8 @@ | |||
56 | * | 56 | * |
57 | */ | 57 | */ |
58 | 58 | ||
59 | #ifndef HEADER_ECS_LOCL_H | 59 | #ifndef HEADER_ECS_LOCAL_H |
60 | #define HEADER_ECS_LOCL_H | 60 | #define HEADER_ECS_LOCAL_H |
61 | 61 | ||
62 | #include <openssl/ecdsa.h> | 62 | #include <openssl/ecdsa.h> |
63 | 63 | ||
@@ -96,4 +96,4 @@ ECDSA_SIG *ossl_ecdsa_sign_sig(const unsigned char *dgst, int dgst_len, | |||
96 | 96 | ||
97 | __END_HIDDEN_DECLS | 97 | __END_HIDDEN_DECLS |
98 | 98 | ||
99 | #endif /* HEADER_ECS_LOCL_H */ | 99 | #endif /* !HEADER_ECS_LOCAL_H */ |
diff --git a/src/lib/libcrypto/evp/evp_local.h b/src/lib/libcrypto/evp/evp_local.h index ba34a7949d..3ffaf555ba 100644 --- a/src/lib/libcrypto/evp/evp_local.h +++ b/src/lib/libcrypto/evp/evp_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: evp_local.h,v 1.1 2022/11/26 16:08:52 tb Exp $ */ | 1 | /* $OpenBSD: evp_local.h,v 1.2 2022/11/26 17:23:17 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 | */ |
@@ -56,8 +56,8 @@ | |||
56 | * | 56 | * |
57 | */ | 57 | */ |
58 | 58 | ||
59 | #ifndef HEADER_EVP_LOCL_H | 59 | #ifndef HEADER_EVP_LOCAL_H |
60 | #define HEADER_EVP_LOCL_H | 60 | #define HEADER_EVP_LOCAL_H |
61 | 61 | ||
62 | __BEGIN_HIDDEN_DECLS | 62 | __BEGIN_HIDDEN_DECLS |
63 | 63 | ||
@@ -321,4 +321,4 @@ int EVP_PKEY_CTX_md(EVP_PKEY_CTX *ctx, int optype, int cmd, const char *md_name) | |||
321 | 321 | ||
322 | __END_HIDDEN_DECLS | 322 | __END_HIDDEN_DECLS |
323 | 323 | ||
324 | #endif /* !HEADER_EVP_LOCL_H */ | 324 | #endif /* !HEADER_EVP_LOCAL_H */ |
diff --git a/src/lib/libcrypto/gost/gost_local.h b/src/lib/libcrypto/gost/gost_local.h index 1b31f7446e..830f14149e 100644 --- a/src/lib/libcrypto/gost/gost_local.h +++ b/src/lib/libcrypto/gost/gost_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: gost_local.h,v 1.1 2022/11/26 16:08:53 tb Exp $ */ | 1 | /* $OpenBSD: gost_local.h,v 1.2 2022/11/26 17:23:18 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2014 Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 3 | * Copyright (c) 2014 Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
4 | * Copyright (c) 2005-2006 Cryptocom LTD | 4 | * Copyright (c) 2005-2006 Cryptocom LTD |
@@ -49,8 +49,8 @@ | |||
49 | * ==================================================================== | 49 | * ==================================================================== |
50 | */ | 50 | */ |
51 | 51 | ||
52 | #ifndef HEADER_GOST_LOCL_H | 52 | #ifndef HEADER_GOST_LOCAL_H |
53 | #define HEADER_GOST_LOCL_H | 53 | #define HEADER_GOST_LOCAL_H |
54 | 54 | ||
55 | #include <openssl/ec.h> | 55 | #include <openssl/ec.h> |
56 | #include <openssl/ecdsa.h> | 56 | #include <openssl/ecdsa.h> |
@@ -114,4 +114,4 @@ extern int GostR3410_512_param_id(const char *value); | |||
114 | 114 | ||
115 | __END_HIDDEN_DECLS | 115 | __END_HIDDEN_DECLS |
116 | 116 | ||
117 | #endif | 117 | #endif /* !HEADER_GOST_LOCAL_H */ |
diff --git a/src/lib/libcrypto/pkcs12/pkcs12_local.h b/src/lib/libcrypto/pkcs12/pkcs12_local.h index 8723fdb2e4..1d6f0558ed 100644 --- a/src/lib/libcrypto/pkcs12/pkcs12_local.h +++ b/src/lib/libcrypto/pkcs12/pkcs12_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: pkcs12_local.h,v 1.2 2022/09/11 17:30:13 tb Exp $ */ | 1 | /* $OpenBSD: pkcs12_local.h,v 1.3 2022/11/26 17:23:18 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 1999. | 3 | * project 1999. |
4 | */ | 4 | */ |
@@ -98,4 +98,4 @@ struct pkcs12_bag_st { | |||
98 | 98 | ||
99 | __END_HIDDEN_DECLS | 99 | __END_HIDDEN_DECLS |
100 | 100 | ||
101 | #endif /* HEADER_PKCS12_LOCAL_H */ | 101 | #endif /* !HEADER_PKCS12_LOCAL_H */ |
diff --git a/src/lib/libcrypto/sm2/sm2_local.h b/src/lib/libcrypto/sm2/sm2_local.h index c934263190..ad97f2c771 100644 --- a/src/lib/libcrypto/sm2/sm2_local.h +++ b/src/lib/libcrypto/sm2/sm2_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sm2_local.h,v 1.1 2022/11/26 16:08:54 tb Exp $ */ | 1 | /* $OpenBSD: sm2_local.h,v 1.2 2022/11/26 17:23:18 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2017, 2019 Ribose Inc | 3 | * Copyright (c) 2017, 2019 Ribose Inc |
4 | * | 4 | * |
@@ -15,8 +15,8 @@ | |||
15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | */ | 16 | */ |
17 | 17 | ||
18 | #ifndef HEADER_SM2_LOCL_H | 18 | #ifndef HEADER_SM2_LOCAL_H |
19 | #define HEADER_SM2_LOCL_H | 19 | #define HEADER_SM2_LOCAL_H |
20 | 20 | ||
21 | #include <openssl/ec.h> | 21 | #include <openssl/ec.h> |
22 | #include <openssl/ecdsa.h> | 22 | #include <openssl/ecdsa.h> |
@@ -39,5 +39,4 @@ int sm2_do_verify(const EC_KEY *key, const EVP_MD *digest, | |||
39 | 39 | ||
40 | __END_HIDDEN_DECLS | 40 | __END_HIDDEN_DECLS |
41 | 41 | ||
42 | #endif | 42 | #endif /* !HEADER_SM2_LOCAL_H */ |
43 | |||
diff --git a/src/lib/libcrypto/ts/ts_local.h b/src/lib/libcrypto/ts/ts_local.h index cf1e9e0589..07c9861e02 100644 --- a/src/lib/libcrypto/ts/ts_local.h +++ b/src/lib/libcrypto/ts/ts_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ts_local.h,v 1.2 2022/09/11 17:31:19 tb Exp $ */ | 1 | /* $OpenBSD: ts_local.h,v 1.3 2022/11/26 17:23:18 tb Exp $ */ |
2 | /* Written by Zoltan Glozik (zglozik@opentsa.org) for the OpenSSL | 2 | /* Written by Zoltan Glozik (zglozik@opentsa.org) for the OpenSSL |
3 | * project 2002, 2003, 2004. | 3 | * project 2002, 2003, 2004. |
4 | */ | 4 | */ |
@@ -313,4 +313,4 @@ ESS_SIGNING_CERT_V2 *ESS_SIGNING_CERT_V2_dup(ESS_SIGNING_CERT_V2 *a); | |||
313 | 313 | ||
314 | __END_HIDDEN_DECLS | 314 | __END_HIDDEN_DECLS |
315 | 315 | ||
316 | #endif /* HEADER_TS_LOCAL_H */ | 316 | #endif /* !HEADER_TS_LOCAL_H */ |
diff --git a/src/lib/libcrypto/ui/ui_local.h b/src/lib/libcrypto/ui/ui_local.h index d62c628f8c..460b5600bd 100644 --- a/src/lib/libcrypto/ui/ui_local.h +++ b/src/lib/libcrypto/ui/ui_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ui_local.h,v 1.1 2022/11/26 16:08:54 tb Exp $ */ | 1 | /* $OpenBSD: ui_local.h,v 1.2 2022/11/26 17:23:18 tb Exp $ */ |
2 | 2 | ||
3 | /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL | 3 | /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL |
4 | * project 2001. | 4 | * project 2001. |
@@ -57,8 +57,8 @@ | |||
57 | * | 57 | * |
58 | */ | 58 | */ |
59 | 59 | ||
60 | #ifndef HEADER_UI_LOCL_H | 60 | #ifndef HEADER_UI_LOCAL_H |
61 | #define HEADER_UI_LOCL_H | 61 | #define HEADER_UI_LOCAL_H |
62 | 62 | ||
63 | #include <openssl/ui.h> | 63 | #include <openssl/ui.h> |
64 | #include <openssl/crypto.h> | 64 | #include <openssl/crypto.h> |
@@ -149,4 +149,4 @@ struct ui_st { | |||
149 | 149 | ||
150 | __END_HIDDEN_DECLS | 150 | __END_HIDDEN_DECLS |
151 | 151 | ||
152 | #endif | 152 | #endif /* !HEADER_UI_LOCAL_H */ |
diff --git a/src/lib/libcrypto/x509/x509_local.h b/src/lib/libcrypto/x509/x509_local.h index 1b1522acaa..b0c7a197f3 100644 --- a/src/lib/libcrypto/x509/x509_local.h +++ b/src/lib/libcrypto/x509/x509_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_local.h,v 1.1 2022/11/26 16:08:54 tb Exp $ */ | 1 | /* $OpenBSD: x509_local.h,v 1.2 2022/11/26 17:23:18 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 2013. | 3 | * project 2013. |
4 | */ | 4 | */ |
@@ -56,8 +56,8 @@ | |||
56 | * | 56 | * |
57 | */ | 57 | */ |
58 | 58 | ||
59 | #ifndef HEADER_X509_LCL_H | 59 | #ifndef HEADER_X509_LOCAL_H |
60 | #define HEADER_X509_LCL_H | 60 | #define HEADER_X509_LOCAL_H |
61 | 61 | ||
62 | __BEGIN_HIDDEN_DECLS | 62 | __BEGIN_HIDDEN_DECLS |
63 | 63 | ||
@@ -377,4 +377,4 @@ int name_cmp(const char *name, const char *cmp); | |||
377 | 377 | ||
378 | __END_HIDDEN_DECLS | 378 | __END_HIDDEN_DECLS |
379 | 379 | ||
380 | #endif /* !HEADER_X509_LCL_H */ | 380 | #endif /* !HEADER_X509_LOCAL_H */ |
diff --git a/src/lib/libssl/dtls_local.h b/src/lib/libssl/dtls_local.h index 27d32105b7..c7c413fef4 100644 --- a/src/lib/libssl/dtls_local.h +++ b/src/lib/libssl/dtls_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dtls_local.h,v 1.1 2022/11/26 16:08:55 tb Exp $ */ | 1 | /* $OpenBSD: dtls_local.h,v 1.2 2022/11/26 17:23:18 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
@@ -229,4 +229,4 @@ int dtls1_get_record(SSL *s); | |||
229 | 229 | ||
230 | __END_HIDDEN_DECLS | 230 | __END_HIDDEN_DECLS |
231 | 231 | ||
232 | #endif | 232 | #endif /* !HEADER_DTLS_LOCL_H */ |
diff --git a/src/lib/libssl/ssl_local.h b/src/lib/libssl/ssl_local.h index 8590243884..1e38d3939e 100644 --- a/src/lib/libssl/ssl_local.h +++ b/src/lib/libssl/ssl_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_local.h,v 1.1 2022/11/26 16:08:55 tb Exp $ */ | 1 | /* $OpenBSD: ssl_local.h,v 1.2 2022/11/26 17:23:18 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 | * |
@@ -1535,4 +1535,4 @@ int tls_process_peer_certs(SSL *s, STACK_OF(X509) *peer_certs); | |||
1535 | 1535 | ||
1536 | __END_HIDDEN_DECLS | 1536 | __END_HIDDEN_DECLS |
1537 | 1537 | ||
1538 | #endif | 1538 | #endif /* !HEADER_SSL_LOCL_H */ |