Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
authorPaolo Molaro <lupus@oddwiz.org>
Fri, 15 Aug 2003 09:52:41 +0000 (09:52 -0000)
committerPaolo Molaro <lupus@oddwiz.org>
Fri, 15 Aug 2003 09:52:41 +0000 (09:52 -0000)
* rand.c: remove useless warnings.

svn path=/trunk/mono/; revision=17355

mono/metadata/ChangeLog
mono/metadata/rand.c

index 5107280e8ba03e6d23a84478b00e6c765792c2fe..3302a92382e626b71eefaeedc79cf2ad34eee89e 100644 (file)
@@ -1,4 +1,8 @@
 
+Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
+
+       * rand.c: remove useless warnings.
+
 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
 
        * class.c: implemented ldtoken for methods and fieldrefs.
index 0e5348a161e1a8612b3f6f0a9d94180fcad4f337..40de928939071e5f3dca7cdc5c3340522fd66aef 100644 (file)
@@ -105,18 +105,13 @@ ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetNonZe
 
 /* This needs to change when I do the Win32 support... */
 #else
-#ifndef _MSC_VER
-#warning "No Entropy Source Found"
-#endif
 void ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes(MonoObject *self, MonoArray *arry)
 {
-    g_warning("0K problem. We have no entropy. Badness will occur.");
     mono_raise_exception(mono_get_exception_not_implemented());
 }
 
 void ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetNonZeroBytes(MonoObject *self, MonoArray *arry)
 {
-    g_warning("0K problem. We have no entropy. Badness will occur.");
     mono_raise_exception(mono_get_exception_not_implemented());
 }