aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2022-05-03 11:16:35 +0200
committerShauren <shauren.trinity@gmail.com>2022-05-03 11:16:35 +0200
commitaefce9a25cc1af82d91b07b819bf715fbce41b2f (patch)
tree1d7f0b016ef9e07b98b5337ef7fe06c30b74f834
parent33132efd227513bec72ecb52cdb95d7af3a9f1b5 (diff)
Core/Misc: Prefix include guard to avoid possible conflict with external library
-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>