search for: _randoms_h

Displaying 2 results from an estimated 2 matches for "_randoms_h".

Did you mean: _random_
2005 Nov 17
3
4.2 and the 'last' command
We've run into an interesting dilemma regarding last log information and ssh 4.2p1. In 3.8, we didn't see this problem, but now has cropped up in 4.2. When a user logs in, sshd seems to call 'last' to get the last log information. 'last' then opens the /var/log/wtmp file and processes the information. On some systems, this file can be quite large, and we're seeing
2000 Aug 25
1
[patch] configurable ssh_prng_cmds
...-- openssh-SNAP-20000823.orig/entropy.h Sun Jul 9 14:42:33 2000 +++ openssh-SNAP-20000823.new/entropy.h Fri Aug 25 14:43:55 2000 @@ -33,4 +33,7 @@ void seed_rng(void); void init_rng(void); +/* SSH_PRNG_COMMAND_FILE from server/client options */ +extern char* ssh_prng_command_file; + #endif /* _RANDOMS_H */ diff -ur openssh-SNAP-20000823.orig/readconf.c openssh-SNAP-20000823.new/readconf.c --- openssh-SNAP-20000823.orig/readconf.c Fri Aug 18 05:59:06 2000 +++ openssh-SNAP-20000823.new/readconf.c Fri Aug 25 14:43:55 2000 @@ -20,6 +20,7 @@ #include "cipher.h" #include "readconf.h&quo...