aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2022-05-03 11:16:35 +0200
committerShauren <shauren.trinity@gmail.com>2022-06-16 12:37:00 +0200
commite23a9943dd24cc8333f121c65f4ece969cc6be3d (patch)
tree1daa3ba03c94d2a9d826194a24a7b68900becd05
parenta1c8b709f9ff3bd20cff6f543b0d7ad681f7b58a (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.h4
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>