summaryrefslogtreecommitdiffstats
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 044275a7..3770aca8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
accidentally committed.
- (djm) Add Markus' patch for compat wih OpenSSL < 0.9.6.
Known issue: Blowfish for SSH1 does not work
+ - (stevesk) entropy.c: typo in debug message
20020307
- (djm) OpenBSD CVS Sync
@@ -7826,4 +7827,4 @@
- Wrote replacements for strlcpy and mkdtemp
- 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 $
diff --git a/entropy.c b/entropy.c
index 03591f06..8f6ab0ea 100644
--- a/entropy.c
+++ b/entropy.c
@@ -45,7 +45,7 @@
* 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
#define RANDOM_SEED_SIZE 48
@@ -67,7 +67,7 @@ seed_rng(void)
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)
fatal("Couldn't open /dev/null: %s", strerror(errno));