]> andersk Git - openssh.git/commitdiff
- Fix --with-ipaddr-display option test. Fix from Jarno Huuskonen
authordamien <damien>
Mon, 17 Jan 2000 08:22:36 +0000 (08:22 +0000)
committerdamien <damien>
Mon, 17 Jan 2000 08:22:36 +0000 (08:22 +0000)
   <jhuuskon@hytti.uku.fi>

CREDITS
ChangeLog
configure.in

diff --git a/CREDITS b/CREDITS
index f1012569d5134f04d3b1427d3757d57c58c1f353..b40e75dae7be60a8f02329b00ff0eba3b49e884b 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -16,6 +16,7 @@ David Rankin <drankin@bohemians.lexington.ky.us> - libwrap, NetBSD fixes
 Gary E. Miller <gem@rellim.com> - SCO support
 Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE> - KRB4/AFS config patch
 Jani Hakala <jahakala@cc.jyu.fi> - Patches
+Jarno Huuskonen <jhuuskon@hytti.uku.fi> - Bugfixes
 Jim Knoble <jmknoble@pobox.com> - Many patches
 jonchen (email unknown) - the original author of PAM support of SSH
 Juergen Keil <jk@tools.de> - scp bugfixing
index 5ea5c01882ee7accae73fdd30cd5b1dc2b57bde1..8c182d6cb45c73b8f8813dd305a0e22fa2a074b8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,8 @@
  - Released 1.2.1pre27
 
  - Fix rresvport_af failure errors (logic error in bsd-bindresvport.c)
+ - Fix --with-ipaddr-display option test. Fix from Jarno Huuskonen 
+   <jhuuskon@hytti.uku.fi>
 
 20000116
  - Renamed --with-xauth-path to --with-xauth
index 7b8b46b4216aab86e6510ce5b1adc2ac1e9b039d..7c0b1491b34f47d697a43b18097e755000348eef 100644 (file)
@@ -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
        ]
This page took 0.045316 seconds and 5 git commands to generate.