Displaying 1 result from an estimated 1 matches for "init_prng".
Did you mean:
init_sprng
2001 Feb 06
1
RNG not initialised for sftp only under Solaris.
...debug: client_init id 0 arg 0
debug: Sending subsystem: sftp
debug: channel 0: open confirm rwindow 0 rmax 16384
RNG not initialised
[..]
The solution is to add 'init_prng();' to the main() of sftp.c.
Why sftp is caring about such things boggles my mind. =) Scp sure does
not nor does sftp-server, and it was my impression (by glacing at the
code) that sftp.c pretty much piggy backing ontop of ssh like scp.
Looks to be somewhere in the interactive_loop() cod...