summaryrefslogtreecommitdiff
path: root/src/pkg/crypto/rand/rand_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/crypto/rand/rand_unix.go')
-rw-r--r--src/pkg/crypto/rand/rand_unix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/crypto/rand/rand_unix.go b/src/pkg/crypto/rand/rand_unix.go
index 66b72c076..3a06aa8b1 100644
--- a/src/pkg/crypto/rand/rand_unix.go
+++ b/src/pkg/crypto/rand/rand_unix.go
@@ -32,7 +32,7 @@ func (r *devReader) Read(b []byte) (n int, err os.Error) {
r.mu.Lock()
defer r.mu.Unlock()
if r.f == nil {
- f, err := os.Open(r.name, os.O_RDONLY, 0)
+ f, err := os.Open(r.name)
if f == nil {
return 0, err
}