diff --git a/indra/test/llblowfish_tut.cpp b/indra/test/llblowfish_tut.cpp
index 8fe8b7a720c315819ff1be684f971c1a0fec6f19..eb2e4ed0f8158e40b9335614f9498151c8ec5a39 100644
--- a/indra/test/llblowfish_tut.cpp
+++ b/indra/test/llblowfish_tut.cpp
@@ -93,7 +93,7 @@ namespace tut
 	template<> template<>
 	void blowfish_object::test<1>()
 	{
-#if !LL_LINUX
+#if LL_WINDOWS
 		skip_fail("Blowfish only supported on Linux.");
 #else
 		LLUUID blank;
@@ -108,13 +108,13 @@ namespace tut
 		dst_len = cipher.requiredEncryptionSpace(8);
 		ensure("encryption space 8",
 				(dst_len == 16)  );
-#endif // !LL_LINUX
+#endif // LL_WINDOWS
 	}
 
 	template<> template<>
 	void blowfish_object::test<2>()
 	{
-#if !LL_LINUX
+#if LL_WINDOWS
 		skip_fail("Blowfish only supported on Linux.");
 #else
 		LLUUID blank;
@@ -130,13 +130,13 @@ namespace tut
 		result.resize(count);
 
 		ensure("encrypt null key", matchFile("blowfish.1.bin", result));
-#endif // !LL_LINUX
+#endif // LL_WINDOWS
 	}
 
 	template<> template<>
 	void blowfish_object::test<3>()
 	{
-#if !LL_LINUX
+#if LL_WINDOWS
         skip_fail("Blowfish only supported on Linux.");
 #else
         // same as base64 test id
@@ -153,6 +153,6 @@ namespace tut
 		result.resize(count);
 
 		ensure("encrypt real key", matchFile("blowfish.2.bin", result));
-#endif // !LL_LINUX
+#endif // LL_WINDOWS
 	}
 }