summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-02-28 12:51:18 +1100
committerDamien Miller <djm@mindrot.org>2001-02-28 12:51:18 +1100
commite854662d54b777a229d8c58f4afb68332113442b (patch)
treeb1e99650162c6d397e30c58e0b49fa16d1619b35 /configure.in
parent3d8ae61b878bc49807307a29b6f30c90636d3980 (diff)
- (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")