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/libcrypto/bn | |
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/libcrypto/bn')
-rw-r--r-- | src/lib/libcrypto/bn/bn_local.h | 8 |
1 files changed, 4 insertions, 4 deletions
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 */ |