summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-01-16 23:03:56 +1100
committerDamien Miller <djm@mindrot.org>2000-01-16 23:03:56 +1100
commit62a52ef08da1f8371132278cb4025eccf56671a2 (patch)
tree5a1e054fb897962a4f17e5bed5685c32a176f12f
parent8f926494419b922e3c005f06f65d4ea4523cdfda (diff)
downloadopenssh-git-62a52ef08da1f8371132278cb4025eccf56671a2.tar.gz
- Compilation fix from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
- Fixed broken bugfix for /dev/ptmx on Linux systems which lack openpty(). Report from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
-rw-r--r--ChangeLog2
-rw-r--r--configure.in2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 979e8ca6..89a3e7c2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,8 @@
- Released 1.2.1pre26
- Compilation fix from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
+ - Fixed broken bugfix for /dev/ptmx on Linux systems which lack
+ openpty(). Report from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
20000115
- Add --with-xauth-path configure directive and explicit test for
diff --git a/configure.in b/configure.in
index 816f56eb..a5a97e7a 100644
--- a/configure.in
+++ b/configure.in
@@ -507,7 +507,7 @@ AC_ARG_WITH(dante,
]
)
-if test ! -z "$no_dev_ptmx" ; then
+if test -z "$no_dev_ptmx" ; then
AC_CHECK_FILE("/dev/ptmx", AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX))
fi
AC_CHECK_FILE("/dev/ptc", AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC))