summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2003-09-22 15:36:15 +0000
committerBen Lindstrom <mouring@eviladmin.org>2003-09-22 15:36:15 +0000
commitda4d9cf4bfc34052f60e7161abbe7b88517ab43a (patch)
treeb74aaec97dea6a1cdc177217c3c3664569db8951
parent9a2c4cddadf209e0b494fb10c1218424b53dd6fd (diff)
- (bal) "extration" -> "extraction" in ssh-rand-helper.c; repoted by john
on #unixhelp@efnet
-rw-r--r--ChangeLog4
-rw-r--r--ssh-rand-helper.c4
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index fd8abf04b..35c648051 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -71,6 +71,8 @@
71 - markus@cvs.openbsd.org 2003/09/19 17:43:35 71 - markus@cvs.openbsd.org 2003/09/19 17:43:35
72 [clientloop.c sshtty.c sshtty.h] 72 [clientloop.c sshtty.c sshtty.h]
73 remove fatal callbacks from client code; ok deraadt 73 remove fatal callbacks from client code; ok deraadt
74 - (bal) "extration" -> "extraction" in ssh-rand-helper.c; repoted by john
75 on #unixhelp@efnet
74 76
7520030919 7720030919
76 - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; 78 - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL;
@@ -1207,4 +1209,4 @@
1207 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 1209 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1208 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 1210 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1209 1211
1210$Id: ChangeLog,v 1.3036 2003/09/22 11:16:05 dtucker Exp $ 1212$Id: ChangeLog,v 1.3037 2003/09/22 15:36:15 mouring Exp $
diff --git a/ssh-rand-helper.c b/ssh-rand-helper.c
index 7e65e4569..effc8745e 100644
--- a/ssh-rand-helper.c
+++ b/ssh-rand-helper.c
@@ -39,7 +39,7 @@
39#include "pathnames.h" 39#include "pathnames.h"
40#include "log.h" 40#include "log.h"
41 41
42RCSID("$Id: ssh-rand-helper.c,v 1.13 2003/08/21 23:34:41 djm Exp $"); 42RCSID("$Id: ssh-rand-helper.c,v 1.14 2003/09/22 15:36:15 mouring Exp $");
43 43
44/* Number of bytes we write out */ 44/* Number of bytes we write out */
45#define OUTPUT_SEED_SIZE 48 45#define OUTPUT_SEED_SIZE 48
@@ -563,7 +563,7 @@ prng_write_seedfile(void)
563 debug("writing PRNG seed to file %.100s", filename); 563 debug("writing PRNG seed to file %.100s", filename);
564 564
565 if (RAND_bytes(seed, sizeof(seed)) <= 0) 565 if (RAND_bytes(seed, sizeof(seed)) <= 0)
566 fatal("PRNG seed extration failed"); 566 fatal("PRNG seed extraction failed");
567 567
568 /* Don't care if the seed doesn't exist */ 568 /* Don't care if the seed doesn't exist */
569 prng_check_seedfile(filename); 569 prng_check_seedfile(filename);