mirror of git://anongit.mindrot.org/openssh.git
- (stevesk) entropy.c: typo in debug message
This commit is contained in:
parent
c7375ac466
commit
581930735a
|
@ -3,6 +3,7 @@
|
||||||
accidentally committed.
|
accidentally committed.
|
||||||
- (djm) Add Markus' patch for compat wih OpenSSL < 0.9.6.
|
- (djm) Add Markus' patch for compat wih OpenSSL < 0.9.6.
|
||||||
Known issue: Blowfish for SSH1 does not work
|
Known issue: Blowfish for SSH1 does not work
|
||||||
|
- (stevesk) entropy.c: typo in debug message
|
||||||
|
|
||||||
20020307
|
20020307
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
|
@ -7826,4 +7827,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1918 2002/03/10 23:51:17 djm Exp $
|
$Id: ChangeLog,v 1.1919 2002/03/11 00:16:34 stevesk Exp $
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
* XXX: we should tell the child how many bytes we need.
|
* XXX: we should tell the child how many bytes we need.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
RCSID("$Id: entropy.c,v 1.40 2002/01/22 10:57:54 djm Exp $");
|
RCSID("$Id: entropy.c,v 1.41 2002/03/11 00:16:35 stevesk Exp $");
|
||||||
|
|
||||||
#ifndef OPENSSL_PRNG_ONLY
|
#ifndef OPENSSL_PRNG_ONLY
|
||||||
#define RANDOM_SEED_SIZE 48
|
#define RANDOM_SEED_SIZE 48
|
||||||
|
@ -67,7 +67,7 @@ seed_rng(void)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
debug3("Seeing PRNG from %s", SSH_RAND_HELPER);
|
debug3("Seeding PRNG from %s", SSH_RAND_HELPER);
|
||||||
|
|
||||||
if ((devnull = open("/dev/null", O_RDWR)) == -1)
|
if ((devnull = open("/dev/null", O_RDWR)) == -1)
|
||||||
fatal("Couldn't open /dev/null: %s", strerror(errno));
|
fatal("Couldn't open /dev/null: %s", strerror(errno));
|
||||||
|
|
Loading…
Reference in New Issue