aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/rand/rand_getrandom.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/rand/rand_getrandom.go')
-rw-r--r--src/crypto/rand/rand_getrandom.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/rand/rand_getrandom.go b/src/crypto/rand/rand_getrandom.go
index cb31a5687a..478aa5c459 100644
--- a/src/crypto/rand/rand_getrandom.go
+++ b/src/crypto/rand/rand_getrandom.go
@@ -21,7 +21,7 @@ func init() {
// is returned by a single call to getrandom() on systems where int
// has a size of 32 bits.
maxGetRandomRead = (1 << 25) - 1
- case "freebsd", "dragonfly", "solaris":
+ case "freebsd", "dragonfly", "solaris", "illumos":
maxGetRandomRead = 1 << 8
default:
panic("no maximum specified for GetRandom")