search for: ssh_prng_command_fil

Displaying 3 results from an estimated 3 matches for "ssh_prng_command_fil".

Did you mean: ssh_prng_command_file
2000 Aug 25
1
[patch] configurable ssh_prng_cmds
...n-time). Regards Jan diff -ur openssh-SNAP-20000823.orig/entropy.c openssh-SNAP-20000823.new/entropy.c --- openssh-SNAP-20000823.orig/entropy.c Sat Jul 15 06:59:15 2000 +++ openssh-SNAP-20000823.new/entropy.c Fri Aug 25 14:44:52 2000 @@ -67,6 +67,8 @@ # define RUSAGE_CHILDREN 0 #endif +char *ssh_prng_command_file = NULL; + #if defined(EGD_SOCKET) || defined(RANDOM_POOL) #ifdef EGD_SOCKET @@ -810,7 +812,7 @@ original_uid = getuid(); /* Read in collection commands */ - if (!prng_read_commands(SSH_PRNG_COMMAND_FILE)) + if (!prng_read_commands(ssh_prng_command_file)) fatal("PRNG initialisatio...
2002 May 31
1
openssh-3.2.3p1: Problem with make install after configure --prefix=
...my/install/dir --with-ssl-dir=/where/ssl/is Everything compiled Ok but there was a problem when doing make install, as ssh-rand-helper was looking in the wrong place for prng_command_file, so here is a patch for ssh-rand-helper.c. You need to delete a space before the string. 63c63 < # define SSH_PRNG_COMMAND_FILE SSHDIR "/ssh_prng_cmds" --- > # define SSH_PRNG_COMMAND_FILE SSHDIR"/ssh_prng_cmds" Regards Patrick
2001 Oct 16
6
program-prefix does not work
...ASS_PROGRAM "/usr/lib/ssh/ssh-askpass" #endif /* ASKPASS_PROGRAM */ /* * Relevant only when using builtin PRNG. */ #ifndef SSH_PRNG_SEED_FILE ! # define SSH_PRNG_SEED_FILE _PATH_SSH_USER_DIR"/prng_seed" #endif /* SSH_PRNG_SEED_FILE */ #ifndef SSH_PRNG_COMMAND_FILE ! # define SSH_PRNG_COMMAND_FILE ETCDIR "/ssh_prng_cmds" #endif /* SSH_PRNG_COMMAND_FILE */ --- 154,168 ---- /* Askpass program define */ #ifndef ASKPASS_PROGRAM ! #define ASKPASS_PROGRAM "/usr/lib/ssh" "/" _PROGRAM_PREFIX "ssh-askpass"...