summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authordjm <djm>2001-02-28 01:51:18 +0000
committerdjm <djm>2001-02-28 01:51:18 +0000
commit72bfb8f198ae55f2ea5cccfc5516702bad256af3 (patch)
treeced55087e0d34ece863e23d43700d69cbd2a3e4e /configure.in
parent6a3c01d143c5cf5bd1b5562b67f8b2d3e3d14a5c (diff)
downloadopenssh-72bfb8f198ae55f2ea5cccfc5516702bad256af3.tar.gz
- (djm) Remove /tmp from EGD socket search list
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index e6111684..fc6e1faa 100644
--- a/configure.in
+++ b/configure.in
@@ -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)
@@ -1280,7 +1280,7 @@ AC_ARG_WITH(egd-pool,
if test -z "$RANDOM_POOL" ; then
AC_MSG_CHECKING(for PRNGD/EGD socket)
# 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
EGD_SOCKET="$egdsock"
AC_DEFINE_UNQUOTED(EGD_SOCKET, "$EGD_SOCKET")