diff options
author | Damien Miller <djm@mindrot.org> | 2000-01-29 10:20:21 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-01-29 10:20:21 +1100 |
commit | c85f9b48517385e3cc95deb1d3b1bc72e5124d58 (patch) | |
tree | 08cc54aeb4a67d902b314e117c0820ee3ac07bba | |
parent | 27f4c78698de46b3a22bcdb2f47f20f74950d9bc (diff) |
- Added note in UPGRADING re interop with commercial SSH using idea.
Report from Jim Knoble <jmknoble@pobox.com>
- Fix linking order for Kerberos/AFS. Fix from Holget Trapp
<Holger.Trapp@Informatik.TU-Chemnitz.DE>
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | UPGRADING | 8 | ||||
-rw-r--r-- | configure.in | 3 |
3 files changed, 14 insertions, 1 deletions
@@ -3,6 +3,10 @@ | |||
3 | 3 | ||
4 | - NeXT keeps it lastlog in /usr/adm. Report from | 4 | - NeXT keeps it lastlog in /usr/adm. Report from |
5 | mouring@newton.pconline.com | 5 | mouring@newton.pconline.com |
6 | - Added note in UPGRADING re interop with commercial SSH using idea. | ||
7 | Report from Jim Knoble <jmknoble@pobox.com> | ||
8 | - Fix linking order for Kerberos/AFS. Fix from Holget Trapp | ||
9 | <Holger.Trapp@Informatik.TU-Chemnitz.DE> | ||
6 | 10 | ||
7 | 20000125 | 11 | 20000125 |
8 | - Fix NULL pointer dereference in login.c. Fix from Andre Lucas | 12 | - Fix NULL pointer dereference in login.c. Fix from Andre Lucas |
@@ -96,3 +96,11 @@ with the --with-ipv4-default configure option. This instructs OpenSSH to | |||
96 | use IPv4-only address resolution. (IPv6 lookups may still be made by | 96 | use IPv4-only address resolution. (IPv6 lookups may still be made by |
97 | specifying the -6 option). | 97 | specifying the -6 option). |
98 | 98 | ||
99 | 10. Logins from commercial ssh generate the error "Selected cipher type | ||
100 | idea not supported by server" | ||
101 | |||
102 | This error is generated when a commercial ssh which has been configured to | ||
103 | use the 'idea' cipher attempts to connect to an OpenSSH server. To rectify | ||
104 | this, select a different cipher in ssh_config or ~/.ssh/config (3des for | ||
105 | security or blowfish for speed). | ||
106 | |||
diff --git a/configure.in b/configure.in index 6423b62e2..2ff4aba59 100644 --- a/configure.in +++ b/configure.in | |||
@@ -630,7 +630,7 @@ AC_ARG_WITH(kerberos4, | |||
630 | AC_MSG_WARN([Cannot find libkrb, build may fail]) | 630 | AC_MSG_WARN([Cannot find libkrb, build may fail]) |
631 | fi | 631 | fi |
632 | 632 | ||
633 | LIBS="$LIBS -lkrb -ldes" | 633 | KLIBS="-lkrb -ldes" |
634 | AC_CHECK_LIB(resolv, dn_expand, , ) | 634 | AC_CHECK_LIB(resolv, dn_expand, , ) |
635 | KRB4=yes | 635 | KRB4=yes |
636 | AC_DEFINE(KRB4) | 636 | AC_DEFINE(KRB4) |
@@ -661,6 +661,7 @@ AC_ARG_WITH(afs, | |||
661 | fi | 661 | fi |
662 | ] | 662 | ] |
663 | ) | 663 | ) |
664 | LIBS="$LIBS $KLIBS" | ||
664 | 665 | ||
665 | dnl Check whether user wants S/Key support | 666 | dnl Check whether user wants S/Key support |
666 | AC_ARG_WITH(skey, | 667 | AC_ARG_WITH(skey, |