summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2002-03-11 00:16:34 +0000
committerKevin Steves <stevesk@pobox.com>2002-03-11 00:16:34 +0000
commit581930735aa20f9bcff64f0e22f1ee5d409c18af (patch)
treea498050fb1d73165ee564df6c5b7483295c5530d
parentc7375ac4668ffb44dc62030dcc508ea1d1012021 (diff)
- (stevesk) entropy.c: typo in debug message
-rw-r--r--ChangeLog3
-rw-r--r--entropy.c4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 044275a7e..3770aca85 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
3 accidentally committed. 3 accidentally committed.
4 - (djm) Add Markus' patch for compat wih OpenSSL < 0.9.6. 4 - (djm) Add Markus' patch for compat wih OpenSSL < 0.9.6.
5 Known issue: Blowfish for SSH1 does not work 5 Known issue: Blowfish for SSH1 does not work
6 - (stevesk) entropy.c: typo in debug message
6 7
720020307 820020307
8 - (djm) OpenBSD CVS Sync 9 - (djm) OpenBSD CVS Sync
@@ -7826,4 +7827,4 @@
7826 - Wrote replacements for strlcpy and mkdtemp 7827 - Wrote replacements for strlcpy and mkdtemp
7827 - Released 1.0pre1 7828 - Released 1.0pre1
7828 7829
7829$Id: ChangeLog,v 1.1918 2002/03/10 23:51:17 djm Exp $ 7830$Id: ChangeLog,v 1.1919 2002/03/11 00:16:34 stevesk Exp $
diff --git a/entropy.c b/entropy.c
index 03591f062..8f6ab0ea0 100644
--- a/entropy.c
+++ b/entropy.c
@@ -45,7 +45,7 @@
45 * XXX: we should tell the child how many bytes we need. 45 * XXX: we should tell the child how many bytes we need.
46 */ 46 */
47 47
48RCSID("$Id: entropy.c,v 1.40 2002/01/22 10:57:54 djm Exp $"); 48RCSID("$Id: entropy.c,v 1.41 2002/03/11 00:16:35 stevesk Exp $");
49 49
50#ifndef OPENSSL_PRNG_ONLY 50#ifndef OPENSSL_PRNG_ONLY
51#define RANDOM_SEED_SIZE 48 51#define RANDOM_SEED_SIZE 48
@@ -67,7 +67,7 @@ seed_rng(void)
67 return; 67 return;
68 } 68 }
69 69
70 debug3("Seeing PRNG from %s", SSH_RAND_HELPER); 70 debug3("Seeding PRNG from %s", SSH_RAND_HELPER);
71 71
72 if ((devnull = open("/dev/null", O_RDWR)) == -1) 72 if ((devnull = open("/dev/null", O_RDWR)) == -1)
73 fatal("Couldn't open /dev/null: %s", strerror(errno)); 73 fatal("Couldn't open /dev/null: %s", strerror(errno));