diff options
author | deraadt <> | 2014-06-15 05:10:58 +0000 |
---|---|---|
committer | deraadt <> | 2014-06-15 05:10:58 +0000 |
commit | 58b0b59173dbb3943c42d0b34806b7adad2ef68c (patch) | |
tree | d69b21edfdb70f227968a51c04a990c1c0c123e9 /src | |
parent | ee621a65ad535c3e4b2cf212f7bf2ec1eef52906 (diff) | |
download | openbsd-58b0b59173dbb3943c42d0b34806b7adad2ef68c.tar.gz openbsd-58b0b59173dbb3943c42d0b34806b7adad2ef68c.tar.bz2 openbsd-58b0b59173dbb3943c42d0b34806b7adad2ef68c.zip |
oops, typo. James Hartley is fast at trying -current
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libc/stdlib/random.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/random.c b/src/lib/libc/stdlib/random.c index 0c388983be..737d4d27b6 100644 --- a/src/lib/libc/stdlib/random.c +++ b/src/lib/libc/stdlib/random.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: random.c,v 1.21 2014/06/15 01:49:06 deraadt Exp $ */ | 1 | /* $OpenBSD: random.c,v 1.22 2014/06/15 05:10:58 deraadt Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 1983 Regents of the University of California. | 3 | * Copyright (c) 1983 Regents of the University of California. |
4 | * All rights reserved. | 4 | * All rights reserved. |
@@ -259,7 +259,7 @@ srandomdev(void) | |||
259 | else | 259 | else |
260 | len = rand_deg * sizeof(state[0]); | 260 | len = rand_deg * sizeof(state[0]); |
261 | 261 | ||
262 | arc4random_buf(buf, len); | 262 | arc4random_buf(state, len); |
263 | 263 | ||
264 | if (rand_type != TYPE_0) { | 264 | if (rand_type != TYPE_0) { |
265 | fptr = &state[rand_sep]; | 265 | fptr = &state[rand_sep]; |