]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* util/random_unix.c: Add NetBSD and Mac OS X to verified list.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Tue, 8 Oct 2013 14:35:21 +0000 (16:35 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Tue, 8 Oct 2013 14:35:21 +0000 (16:35 +0200)
ChangeLog
util/random_unix.c

index 8e7936d7dc506becb0ea9216f86172397b635498..dc453dcbbf06acb66e85e27d43a234c01cead9c6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-10-08  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * util/random_unix.c: Add NetBSD and Mac OS X to verified list.
+
 2013-10-08  Vladimir Testov  <vladimir.testov@rosalab.ru>
 
        * grub-core/gfxmenu/gui_list.c: New option `scrollbar-slice`.
index 3c46435ffcfb61b383508b025c4b4413aed7f69d..8ef6aa60e4324cd83d9c922cc97620728b49ef26 100644 (file)
@@ -33,7 +33,7 @@
 int
 grub_get_random (void *out, grub_size_t len)
 {
-#if ! defined (__linux__) && ! defined (__FreeBSD__) && ! defined (__FreeBSD_kernel__) && ! defined (__OpenBSD__) && !defined (__GNU__) && ! defined (_WIN32) && !defined(__CYGWIN__)
+#if ! defined (__linux__) && ! defined (__FreeBSD__) && ! defined (__FreeBSD_kernel__) && ! defined (__OpenBSD__) && !defined (__GNU__) && ! defined (_WIN32) && !defined(__CYGWIN__) && !defined (__NetBSD__) && !defined (__APPLE__) && !defined(__sun__)
   /* TRANSLATORS: The generator might still be secure just GRUB isn't sure about it.  */
   printf ("%s", _("WARNING: your random generator isn't known to be secure\n"));
 #warning "your random generator isn't known to be secure"