diff options
author | damien <damien> | 2000-01-17 08:22:36 +0000 |
---|---|---|
committer | damien <damien> | 2000-01-17 08:22:36 +0000 |
commit | a514a7fe3817a1236a8cb2e9112bd3194f50c439 (patch) | |
tree | d427acfbe9526a57d4c7bf9894504a7d448e4dcf /configure.in | |
parent | 05e19cc84c0d0fcde1c50be2d60422bd474455de (diff) | |
download | openssh-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.in | 2 |
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 ] |