]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (bal) seed_init() and seed_rng() required in ssh-keyscan.c
authorBen Lindstrom <mouring@eviladmin.org>
Wed, 10 Oct 2001 20:45:43 +0000 (20:45 +0000)
committerBen Lindstrom <mouring@eviladmin.org>
Wed, 10 Oct 2001 20:45:43 +0000 (20:45 +0000)
ChangeLog
ssh-keyscan.c

index cc8513d801d702fdeda51bd006204f04e700cac8..4a571aa88c1b22cd55c69af19de72a6b257e8032 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -49,6 +49,7 @@
      simplify session close: no more delayed session_close, no more 
      blocking wait() calls.
  - (bal) removed two unsed headers in openbsd-compat/bsd-misc.c 
+ - (bal) seed_init() and seed_rng() required in ssh-keyscan.c
 
 20011007
  - (bal) ssh-copy-id corrected permissions for .ssh/ and authorized_keys.
  - Wrote replacements for strlcpy and mkdtemp
  - Released 1.0pre1
 
-$Id: ChangeLog,v 1.1599 2001/10/10 20:38:55 mouring Exp $
+$Id: ChangeLog,v 1.1600 2001/10/10 20:45:43 mouring Exp $
index c46ce633f60efba1afe93c3d4d2d4187edb12ca0..5204913925a7ac042cd121285b8fd023afc3695b 100644 (file)
@@ -686,6 +686,8 @@ main(int argc, char **argv)
        extern char *optarg;
 
        __progname = get_progname(argv[0]);
+       init_rng();
+       seed_rng();
        TAILQ_INIT(&tq);
 
        if (argc <= 1)