- (djm) Remove /tmp from EGD socket search list
This commit is contained in:
parent
3d8ae61b87
commit
e854662d54
|
@ -4,6 +4,7 @@
|
||||||
- (djm) Fully revert PAM session patch (again). All PAM session init is
|
- (djm) Fully revert PAM session patch (again). All PAM session init is
|
||||||
now done before the final fork().
|
now done before the final fork().
|
||||||
- (djm) EGD detection patch from Tim Rice <tim@multitalents.net>
|
- (djm) EGD detection patch from Tim Rice <tim@multitalents.net>
|
||||||
|
- (djm) Remove /tmp from EGD socket search list
|
||||||
|
|
||||||
20010227
|
20010227
|
||||||
- (bal) Applied shutdown() patch for sftp.c by Corinna Vinschen
|
- (bal) Applied shutdown() patch for sftp.c by Corinna Vinschen
|
||||||
|
@ -4165,4 +4166,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.840 2001/02/28 01:49:38 djm Exp $
|
$Id: ChangeLog,v 1.841 2001/02/28 01:51:18 djm Exp $
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $Id: configure.in,v 1.258 2001/02/28 01:49:38 djm Exp $
|
# $Id: configure.in,v 1.259 2001/02/28 01:51:19 djm Exp $
|
||||||
|
|
||||||
AC_INIT(ssh.c)
|
AC_INIT(ssh.c)
|
||||||
|
|
||||||
|
@ -1280,7 +1280,7 @@ AC_ARG_WITH(egd-pool,
|
||||||
if test -z "$RANDOM_POOL" ; then
|
if test -z "$RANDOM_POOL" ; then
|
||||||
AC_MSG_CHECKING(for PRNGD/EGD socket)
|
AC_MSG_CHECKING(for PRNGD/EGD socket)
|
||||||
# Insert other locations here
|
# Insert other locations here
|
||||||
for egdsock in /var/run/egd-pool /tmp/egd-pool /etc/entropy /tmp/entropy ; do
|
for egdsock in /var/run/egd-pool /etc/entropy; do
|
||||||
if test -r $egdsock && $TEST_MINUS_S_SH -c "test -S $egdsock -o -p $egdsock" ; then
|
if test -r $egdsock && $TEST_MINUS_S_SH -c "test -S $egdsock -o -p $egdsock" ; then
|
||||||
EGD_SOCKET="$egdsock"
|
EGD_SOCKET="$egdsock"
|
||||||
AC_DEFINE_UNQUOTED(EGD_SOCKET, "$EGD_SOCKET")
|
AC_DEFINE_UNQUOTED(EGD_SOCKET, "$EGD_SOCKET")
|
||||||
|
|
Loading…
Reference in New Issue