mirror of git://anongit.mindrot.org/openssh.git
- (djm) [openbsd-compat/bsd-arc4random.c] Fix preprocessor detection
for arc4random_buf() and arc4random_uniform(); from Josh Gilkerson
This commit is contained in:
parent
62131dc6e2
commit
7d09b8f8d9
|
@ -1,3 +1,7 @@
|
||||||
|
20100326
|
||||||
|
- (djm) [openbsd-compat/bsd-arc4random.c] Fix preprocessor detection
|
||||||
|
for arc4random_buf() and arc4random_uniform(); from Josh Gilkerson
|
||||||
|
|
||||||
20100324
|
20100324
|
||||||
- (dtucker) [contrib/cygwin/ssh-host-config] Mount the Windows directory
|
- (dtucker) [contrib/cygwin/ssh-host-config] Mount the Windows directory
|
||||||
containing the services file explicitely case-insensitive. This allows to
|
containing the services file explicitely case-insensitive. This allows to
|
||||||
|
|
|
@ -84,7 +84,7 @@ arc4random_stir(void)
|
||||||
}
|
}
|
||||||
#endif /* !HAVE_ARC4RANDOM */
|
#endif /* !HAVE_ARC4RANDOM */
|
||||||
|
|
||||||
#ifndef ARC4RANDOM_BUF
|
#ifndef HAVE_ARC4RANDOM_BUF
|
||||||
void
|
void
|
||||||
arc4random_buf(void *_buf, size_t n)
|
arc4random_buf(void *_buf, size_t n)
|
||||||
{
|
{
|
||||||
|
@ -102,7 +102,7 @@ arc4random_buf(void *_buf, size_t n)
|
||||||
}
|
}
|
||||||
#endif /* !HAVE_ARC4RANDOM_BUF */
|
#endif /* !HAVE_ARC4RANDOM_BUF */
|
||||||
|
|
||||||
#ifndef ARC4RANDOM_UNIFORM
|
#ifndef HAVE_ARC4RANDOM_UNIFORM
|
||||||
/*
|
/*
|
||||||
* Calculate a uniformly distributed random number less than upper_bound
|
* Calculate a uniformly distributed random number less than upper_bound
|
||||||
* avoiding "modulo bias".
|
* avoiding "modulo bias".
|
||||||
|
|
Loading…
Reference in New Issue