summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CREDITS1
-rw-r--r--ChangeLog2
-rw-r--r--configure.in2
3 files changed, 4 insertions, 1 deletions
diff --git a/CREDITS b/CREDITS
index f1012569d..b40e75dae 100644
--- a/CREDITS
+++ b/CREDITS
@@ -16,6 +16,7 @@ David Rankin <drankin@bohemians.lexington.ky.us> - libwrap, NetBSD fixes
16Gary E. Miller <gem@rellim.com> - SCO support 16Gary E. Miller <gem@rellim.com> - SCO support
17Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE> - KRB4/AFS config patch 17Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE> - KRB4/AFS config patch
18Jani Hakala <jahakala@cc.jyu.fi> - Patches 18Jani Hakala <jahakala@cc.jyu.fi> - Patches
19Jarno Huuskonen <jhuuskon@hytti.uku.fi> - Bugfixes
19Jim Knoble <jmknoble@pobox.com> - Many patches 20Jim Knoble <jmknoble@pobox.com> - Many patches
20jonchen (email unknown) - the original author of PAM support of SSH 21jonchen (email unknown) - the original author of PAM support of SSH
21Juergen Keil <jk@tools.de> - scp bugfixing 22Juergen Keil <jk@tools.de> - scp bugfixing
diff --git a/ChangeLog b/ChangeLog
index 5ea5c0188..8c182d6cb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,8 @@
10 - Released 1.2.1pre27 10 - Released 1.2.1pre27
11 11
12 - Fix rresvport_af failure errors (logic error in bsd-bindresvport.c) 12 - Fix rresvport_af failure errors (logic error in bsd-bindresvport.c)
13 - Fix --with-ipaddr-display option test. Fix from Jarno Huuskonen
14 <jhuuskon@hytti.uku.fi>
13 15
1420000116 1620000116
15 - Renamed --with-xauth-path to --with-xauth 17 - Renamed --with-xauth-path to --with-xauth
diff --git a/configure.in b/configure.in
index 7b8b46b42..7c0b1491b 100644
--- a/configure.in
+++ b/configure.in
@@ -636,7 +636,7 @@ dnl Use ip address instead of hostname in $DISPLAY
636AC_ARG_WITH(ipaddr-display, 636AC_ARG_WITH(ipaddr-display,
637 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY], 637 [ --with-ipaddr-display Use ip address instead of hostname in \$DISPLAY],
638 [ 638 [
639 if test "x$withval" = "xno" ; then 639 if test "x$withval" != "xno" ; then
640 AC_DEFINE(IPADDR_IN_DISPLAY) 640 AC_DEFINE(IPADDR_IN_DISPLAY)
641 fi 641 fi
642 ] 642 ]