summaryrefslogtreecommitdiff
path: root/extra/yassl/include/lock.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'extra/yassl/include/lock.hpp')
-rw-r--r--extra/yassl/include/lock.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/extra/yassl/include/lock.hpp b/extra/yassl/include/lock.hpp
index 0525943e45d..7ce656522df 100644
--- a/extra/yassl/include/lock.hpp
+++ b/extra/yassl/include/lock.hpp
@@ -27,7 +27,7 @@
namespace yaSSL {
-#ifdef MULTI_THREADED
+#ifdef YASSL_THREAD_SAFE
#ifdef _WIN32
#include <windows.h>
@@ -69,7 +69,7 @@ namespace yaSSL {
};
#endif // _WIN32
-#else // MULTI_THREADED (WE'RE SINGLE)
+#else // YASSL_THREAD_SAFE (WE'RE SINGLE)
class Mutex {
public:
@@ -79,7 +79,7 @@ namespace yaSSL {
};
};
-#endif // MULTI_THREADED
+#endif // YASSL_THREAD_SAFE