summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authordamien <damien>2000-01-17 08:22:36 +0000
committerdamien <damien>2000-01-17 08:22:36 +0000
commita514a7fe3817a1236a8cb2e9112bd3194f50c439 (patch)
treed427acfbe9526a57d4c7bf9894504a7d448e4dcf /configure.in
parent05e19cc84c0d0fcde1c50be2d60422bd474455de (diff)
downloadopenssh-a514a7fe3817a1236a8cb2e9112bd3194f50c439.tar.gz
- Fix --with-ipaddr-display option test. Fix from Jarno Huuskonen
<jhuuskon@hytti.uku.fi>
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 7b8b46b4..7c0b1491 100644
--- a/configure.in
+++ b/configure.in
@@ -636,7 +636,7 @@ dnl Use ip address instead of hostname in $DISPLAY
AC_ARG_WITH(ipaddr-display,
[ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
[
- if test "x$withval" = "xno" ; then
+ if test "x$withval" != "xno" ; then
AC_DEFINE(IPADDR_IN_DISPLAY)
fi
]