-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
openssh-1.2.1pre23 is available on:
http://violet.ibs.com.au/openssh/files/
Highlights of this release:
- - A cleanup of the PAM code (it now lives in auth-pam.[ch]). This
also fixes a bug where sshd was ignoring a "PermitRootLogin
without-password" directive.
- - David Randkin's SOCKS support using the Dante libraries. I have not
tested this because I don't have Dante. Instructions and links to
Dante are in the INSTALL document.
- - Automatically detect path to perl installation
- - Fixed broken --wth-default-path option
- - Much tidying up of source files, etc.
- - Portability fixes
19991230
- OpenBSD CVS updates:
- [auth-passwd.c]
check for NULL 1st
- Removed most of the pam code into its own file auth-pam.[ch]. This
cleaned up sshd.c up significantly.
- Several other cleanups
- Merged Dante SOCKS support patch from David Rankin
<drankin at bohemians.lexington.ky.us>
- Updated documentation with ./configure options
19991229
- Applied another NetBSD portability patch from David Rankin
<drankin at bohemians.lexington.ky.us>
- Fix --with-default-path option.
- Autodetect perl, patch from David Rankin
<drankin at bohemians.lexington.ky.us>
- Print whether OpenSSH was compiled with RSARef, patch from
Nalin Dahyabhai <nalin at thermo.stat.ncsu.edu>
- Calls to pam_setcred, patch from Nalin Dahyabhai
<nalin at thermo.stat.ncsu.edu>
- Detect missing size_t and typedef it.
- Rename helper.[ch] to (more appropriate) bsd-misc.[ch]
- Minor Makefile cleaning
Regards,
Damien Miller
- --
| "Bombay is 250ms from New York in the new world order" - Alan Cox
| Damien Miller - http://www.mindrot.org/
| Email: djm at mindrot.org (home) -or- djm at ibs.com.au (work)
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.0 (GNU/Linux)
Comment: For info see http://www.gnupg.org
iD8DBQE4avVGormJ9RG1dI8RAlIcAKDXu0CnLcc2j1eyaZ4vto/5Pmc/sACdHny7
yJ8nI93PXkKrwPI/YFqj3TA=w8Ia
-----END PGP SIGNATURE-----
On Thu, 30 Dec 1999 17:01:39 +1100 (EST), you wrote:>- - Fixed broken --wth-default-path optionNope, any path given to --with-default-path still doesn't find its way into any header files. Greetings Marc -- -------------------------------------- !! No courtesy copies, please !! ----- Marc Haber | " Questions are the | Mailadresse im Header Karlsruhe, Germany | Beginning of Wisdom " | Fon: *49 721 966 32 15 Nordisch by Nature | Lt. Worf, TNG "Rightful Heir" | Fax: *49 721 966 31 29
Oops ... meant to send this to the list for maximum usefulness. -- jim knoble jmknoble at pobox.com -------------- next part -------------- An embedded message was scrubbed... From: Jim Knoble <jmknoble at pobox.com> Subject: Re: ANNOUNCE: openssh-1.2.1pre23 Date: Thu, 30 Dec 1999 04:47:39 -0500 Size: 2238 Url: http://lists.mindrot.org/pipermail/openssh-unix-dev/attachments/19991230/22e7791c/attachment.mht
On Thu, Dec 30, 1999 at 05:01:39PM +1100, Damien Miller wrote:> -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > openssh-1.2.1pre23 is available on:> http://violet.ibs.com.au/openssh/files/Configure.in has a problem with the way it checks for socklen_t and size_t. Without this patch, the program never checks correctly, so it always comes back undefined. Thanks, David --- configure.in.orig Thu Dec 30 08:56:52 1999 +++ configure.in Thu Dec 30 08:58:17 1999 @@ -184,8 +184,10 @@ AC_MSG_CHECKING([For socklen_t]) AC_TRY_COMPILE( - [#include <sys/types.h>], - [#include <sys/socket.h>], + [ + #include <sys/types.h> + #include <sys/socket.h> + ], [socklen_t foo; foo = 1235;], [ AC_DEFINE(HAVE_SOCKLEN_T) @@ -196,8 +198,10 @@ AC_MSG_CHECKING([For size_t]) AC_TRY_COMPILE( - [#include <sys/types.h>], - [#include <sys/socket.h>], + [ + #include <sys/types.h> + #include <sys/socket.h> + ], [size_t foo; foo = 1235;], [ AC_DEFINE(HAVE_SIZE_T)
AC_MSG_CHECKING([For socklen_t])
AC_TRY_COMPILE(([For
[#include <sys/types.h>],
[#include <sys/socket.h>],
[socklen_t foo; foo = 1235;],
[
AC_DEFINE(HAVE_SOCKLEN_T)
AC_MSG_RESULT(yes)
],
[AC_MSG_RESULT(no)]
)
This'll need to be changed to
[
#include <sys/types.h>
#include <sys/socket.h>
]
My mistake on wrong number of args for the AC_TRY_COMPILE function.
The same for the size_t
openssh-1.2.1pre23 is available on:
http://violet.ibs.com.au/openssh/files/