- (bal) "extration" -> "extraction" in ssh-rand-helper.c; repoted by john

on #unixhelp@efnet
This commit is contained in:
Ben Lindstrom 2003-09-22 15:36:15 +00:00
parent 9a2c4cddad
commit da4d9cf4bf
2 changed files with 5 additions and 3 deletions

View File

@ -71,6 +71,8 @@
- markus@cvs.openbsd.org 2003/09/19 17:43:35
[clientloop.c sshtty.c sshtty.h]
remove fatal callbacks from client code; ok deraadt
- (bal) "extration" -> "extraction" in ssh-rand-helper.c; repoted by john
on #unixhelp@efnet
20030919
- (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL;
@ -1207,4 +1209,4 @@
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
$Id: ChangeLog,v 1.3036 2003/09/22 11:16:05 dtucker Exp $
$Id: ChangeLog,v 1.3037 2003/09/22 15:36:15 mouring Exp $

View File

@ -39,7 +39,7 @@
#include "pathnames.h"
#include "log.h"
RCSID("$Id: ssh-rand-helper.c,v 1.13 2003/08/21 23:34:41 djm Exp $");
RCSID("$Id: ssh-rand-helper.c,v 1.14 2003/09/22 15:36:15 mouring Exp $");
/* Number of bytes we write out */
#define OUTPUT_SEED_SIZE 48
@ -563,7 +563,7 @@ prng_write_seedfile(void)
debug("writing PRNG seed to file %.100s", filename);
if (RAND_bytes(seed, sizeof(seed)) <= 0)
fatal("PRNG seed extration failed");
fatal("PRNG seed extraction failed");
/* Don't care if the seed doesn't exist */
prng_check_seedfile(filename);