search for: rand_msg

Displaying 6 results from an estimated 6 matches for "rand_msg".

Did you mean: ra_msg
2001 Jun 07
2
Patch to enable multiple possible sources of entropy
...uot; ; then ! AC_DEFINE(USE_BUILTIN_ENTROPY) ! # Use these commands to collect entropy OSSH_PATH_ENTROPY_PROG(PROG_LS, ls) OSSH_PATH_ENTROPY_PROG(PROG_NETSTAT, netstat) *************** *** 1885,1901 **** # Print summary of options ! if test ! -z "$RANDOM_POOL" ; then ! RAND_MSG="Device ($RANDOM_POOL)" ! else ! if test ! -z "$PRNGD_PORT" ; then ! RAND_MSG="PRNGD/EGD (port localhost:$PRNGD_PORT)" ! elif test ! -z "$PRNGD_SOCKET" ; then ! RAND_MSG="PRNGD/EGD (socket $PRNGD_SOCKET)" else ! RAND_MSG="Builtin (ti...
2001 Feb 07
2
Patch for unformatted manpages
...(mansubdir) - # Check whether user wants Kerberos support KRB4_MSG="no" AC_ARG_WITH(kerberos4, @@ -1645,11 +1601,6 @@ # Print summary of options -if test x$MANTYPE = x'$(CATMAN)' ; then - MAN_MSG=cat -else - MAN_MSG=man -fi if test ! -z "$RANDOM_POOL" ; then RAND_MSG="Device ($RANDOM_POOL)" else @@ -1667,7 +1618,7 @@ C=`eval echo ${sbindir}` ; C=`eval echo ${C}` D=`eval echo ${sysconfdir}` ; D=`eval echo ${D}` E=`eval echo ${libexecdir}/ssh-askpass` ; E=`eval echo ${E}` -F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}` +F=`eval echo ${ma...
2001 Feb 20
1
_PATH_STDPATH and @bindir@
Sorry if this is stuff that's been talked about before. If it is, just ignore me. I'm curious to know why Portable OpenSSH doesn't include @bindir@ in the _PATH_STDPATH. This would save most installers of portable OpenSSH from having to --with-default-path=$PREFIX/bin in order to ensure that scp will work properly. This would also, I imagine, save quite a lot of hassle for
2001 Feb 12
3
add scp path to _PATH_STDPATH
what do you think about this patch to add the path to scp to _PATH_STDPATH? is there a better or cleaner way to do this? i'm hoping to ward off 'scp doesn't work' questions for the next release. i did *not* add this to a --with-default-path path, because if a user specifies that, they should control its value completely. Index: Makefile.in
2012 Mar 11
2
[patch] Threading support in ssh-agent
...+ ssh_agent_options="$ssh_agent_options nthreads:manual,default=0" + ] + ) +fi + # Check for PAM libs PAM_MSG="no" AC_ARG_WITH([pam], @@ -4285,6 +4362,7 @@ echo " BSD Auth support: $BSD_AUTH_MSG" echo " Random number source: $RAND_MSG" echo " Privsep sandbox style: $SANDBOX_STYLE" +echo " ssh-agent: $ssh_agent_options" echo "" Index: ssh-agent.1 =================================================================== RCS file: /cvs/openssh/ssh-agent.1,v retr...
2011 Jun 22
3
sandbox pre-auth privsep child
...then LIBS="$LIBS -liberty"; @@ -4191,6 +4229,7 @@ echo " IP address in \$DISPLAY hac echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG" echo " BSD Auth support: $BSD_AUTH_MSG" echo " Random number source: $RAND_MSG" +echo " Privsep sandbox style: $SANDBOX_STYLE" echo "" Index: sandbox-null.c =================================================================== RCS file: sandbox-null.c diff -N sandbox-null.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ sandbox-null.c 22 J...