diff options
author | Shauren <shauren.trinity@gmail.com> | 2022-05-03 11:16:35 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-06-16 12:37:00 +0200 |
commit | e23a9943dd24cc8333f121c65f4ece969cc6be3d (patch) | |
tree | 1daa3ba03c94d2a9d826194a24a7b68900becd05 | |
parent | a1c8b709f9ff3bd20cff6f543b0d7ad681f7b58a (diff) |
Core/Misc: Prefix include guard to avoid possible conflict with external library
(cherry picked from commit aefce9a25cc1af82d91b07b819bf715fbce41b2f)
-rw-r--r-- | src/common/Cryptography/OpenSSLCrypto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/Cryptography/OpenSSLCrypto.h b/src/common/Cryptography/OpenSSLCrypto.h index 8aa0abef88d..7b646659c05 100644 --- a/src/common/Cryptography/OpenSSLCrypto.h +++ b/src/common/Cryptography/OpenSSLCrypto.h @@ -15,8 +15,8 @@ * with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef OPENSSL_CRYPTO_H -#define OPENSSL_CRYPTO_H +#ifndef TRINITY_OPENSSL_CRYPTO_H +#define TRINITY_OPENSSL_CRYPTO_H #include "Define.h" #include <openssl/opensslv.h> |