summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-05-30 - (dtucker) [README] Link to new release notes. Beter late than never...Darren Tucker
2005-05-29typo in commentDarren Tucker
2005-05-29 - (dtucker) [openbsd-compat/port-aix.c] Minor correction to debug message,Darren Tucker
spotted by tim@.
2005-05-29 - (dtucker) [openbsd-compat/port-aix.c] Whitespace cleanups while there.Darren Tucker
2005-05-2920050529Darren Tucker
- (dtucker) [openbsd-compat/port-aix.c] Bug #1046: AIX 5.3 expects the argument to passwdexpired to be initialized to NULL. Suggested by tim@ While at it, initialize the other arguments to auth functions in case they ever acquire this behaviour.
2005-05-28 - (dtucker) [openbsd-compat/port-aix.h] Use the HAVE_DECL_* definitions asDarren Tucker
per the autoconf man page. Configure should always define them but it doesn't hurt to check.
2005-05-28 - (dtucker) [configure.ac] Merge HP-UX blocks into a common block with minorDarren Tucker
version-specific variations as required.
2005-05-28 - (dtucker) [configure.ac] getpgrp may be defined in unistd.h, so check forDarren Tucker
its presence before doing AC_FUNC_GETPGRP.
2005-05-28 - (dtucker) [configure.ac] strsep() may be defined in string.h, so checkDarren Tucker
for its presence and include it in the strsep check.
2005-05-28missing spaceDarren Tucker
2005-05-28 - (dtucker) [configure.ac] For AC_CHECK_HEADERS() and AC_CHECK_FUNCS() haveDarren Tucker
one entry per line to make it easier to merge changes. ok djm@
2005-05-27 - (dtucker) [acconfig.h configure.ac defines.h includes.h sshpty.cDarren Tucker
openbsd-compat/bsd-misc.c] Add support for Ultrix. No, that's not a typo. Required changes from Bernhard Simon, integrated by me. ok djm@
2005-05-27 - (djm) [defines.h] Use our realpath if we have to define PATH_MAX, spotted byDamien Miller
David Leach; ok dtucker@
2005-05-26 - (djm) [configure.ac openbsd-compat/Makefile.in]Damien Miller
[openbsd-compat/openbsd-compat.h openbsd-compat/strtonum.c] Add strtonum(3) from OpenBSD libc, new code needs it. Unfortunately Linux forces us to do a bizarre dance with compiler options to get LLONG_MIN/MAX; Spotted by and ok dtucker@
2005-05-26 - (dtucker) [configure.ac openbsd-compat/getrrsetbyname.c] Bug #1033: ProvideDarren Tucker
templates for _getshort and _getlong if missing to prevent compiler warnings on Linux.
2005-05-26 - (dtucker) [auth-pam.c] Bug #1033: Fix warnings building with PAM on Linux:Darren Tucker
warning: dereferencing type-punned pointer will break strict-aliasing rules warning: passing arg 3 of `pam_get_item' from incompatible pointer type The type-punned pointer fix is based on a patch from SuSE's rpm. ok djm@
2005-05-26 - (dtucker) [regress/reexec.sh] Add ${EXEEXT} so this test also works onDarren Tucker
Cygwin.
2005-05-26 - avsm@cvs.openbsd.org 2005/05/24 17:32:44Damien Miller
[atomicio.c atomicio.h authfd.c monitor_wrap.c msg.c scp.c sftp-client.c] [ssh-keyscan.c sshconnect.c] Switch atomicio to use a simpler interface; it now returns a size_t (containing number of bytes read/written), and indicates error by returning 0. EOF is signalled by errno==EPIPE. Typical use now becomes: if (atomicio(read, ..., len) != len) err(1,"read"); ok deraadt@, cloder@, djm@
2005-05-26 - avsm@cvs.openbsd.org 2005/05/24 02:05:09Damien Miller
[ssh-keygen.c] some style nits from dmiller@, and use a fatal() instead of a printf()/exit
2005-05-26 - djm@cvs.openbsd.org 2005/05/23 23:32:46Damien Miller
[cipher.c myproposal.h ssh.1 ssh_config.5 sshd_config.5] add support for draft-harris-ssh-arcfour-fixes-02 improved arcfour modes; ok markus@
2005-05-26 - avsm@cvs.openbsd.org 2005/05/23 22:44:01Damien Miller
[moduli.c ssh-keygen.c] - removes signed/unsigned comparisons in moduli generation - use strtonum instead of atoi where its easier - check some strlcpy overflow and fatal instead of truncate
2005-05-26 - jmc@cvs.openbsd.org 2005/05/20 11:23:32Damien Miller
[ssh_config.5] oops - article and spacing;
2005-05-26 - djm@cvs.openbsd.org 2005/05/20 10:50:55Damien Miller
[ssh_config.5] give a ProxyCommand example using nc(1), with and ok jmc@
2005-05-26 - djm@cvs.openbsd.org 2005/05/19 02:42:26Damien Miller
[includes.h] fix cast, from grunk AT pestilenz.org
2005-05-26 - djm@cvs.openbsd.org 2005/05/19 02:40:52Damien Miller
[sshd_config] whitespace nit, from grunk AT pestilenz.org
2005-05-26 - djm@cvs.openbsd.org 2005/05/19 02:39:55Damien Miller
[sshd_config.5] sort config options, from grunk AT pestilenz.org; ok jmc@
2005-05-26 - markus@cvs.openbsd.org 2005/05/16 15:30:51Damien Miller
[readconf.c servconf.c] check return value from strdelim() for NULL (AddressFamily); mpech
2005-05-26 - djm@cvs.openbsd.org 2005/05/10 10:30:43Damien Miller
[ssh.c] report real errors on fallback from ControlMaster=no to normal connect
2005-05-26 - djm@cvs.openbsd.org 2005/05/10 10:28:11Damien Miller
[ssh.c] print nice error message for EADDRINUSE as well (ID sync only)
2005-05-26 - markus@cvs.openbsd.org 2005/05/02 21:13:22Damien Miller
[readpass.c] missing {}
2005-05-26 - moritz@cvs.openbsd.org 2005/04/28 10:17:56Damien Miller
[progressmeter.c ssh-keyscan.c] add snprintf checks. ok djm@ markus@
2005-05-26 - jakob@cvs.openbsd.org 2005/04/26 13:08:37Damien Miller
[ssh.c ssh_config.5] fallback gracefully if client cannot connect to ControlPath. ok djm@
2005-05-26 - jmc@cvs.openbsd.org 2005/04/26 12:59:02Damien Miller
[sftp-client.h] spelling correction in comment from wiz@netbsd;
2005-05-26 - dtucker@cvs.openbsd.org 2005/04/23 23:43:47Damien Miller
[readpass.c] Add debug message if read_passphrase can't open /dev/tty; bz #471; ok djm@
2005-05-26 - djm@cvs.openbsd.org 2005/04/21 11:47:19Damien Miller
[ssh.c] don't allocate a pty when -n flag (/dev/null stdin) is set, patch from ignasi.roca AT fujitsu-siemens.com (bz #829); ok dtucker@
2005-05-26 - djm@cvs.openbsd.org 2005/04/21 06:17:50Damien Miller
[ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 ssh_config.5 sshd.8] [sshd_config.5] OpenSSH doesn't ever look at the $HOME environment variable, so don't say that we do (bz #623); ok deraadt@
2005-05-26 - jakob@cvs.openbsd.org 2005/04/20 10:05:45Damien Miller
[dns.c] do not try to look up SSHFP for numerical hostname. ok djm@
2005-05-26 - jmc@cvs.openbsd.org 2005/04/14 12:30:30Damien Miller
[ssh.1] arg to -b is an address, not if_name; ok markus@
2005-05-26 - djm@cvs.openbsd.org 2005/04/09 04:32:54Damien Miller
[misc.c misc.h tildexpand.c Makefile.in] replace tilde_expand_filename with a simpler implementation, ahead of more whacking; ok deraadt@
2005-05-26 - dtucker@cvs.openbsd.org 2005/04/06 12:26:06Damien Miller
[ssh.c] Fix debug call for port forwards; patch from pete at seebeyond.com, ok djm@ (ID sync only - change already in portable)
2005-05-26 - djm@cvs.openbsd.org 2005/04/06 09:43:59Damien Miller
[sshd.c] avoid harmless logspam by not performing setsockopt() on non-socket; ok markus@
2005-05-26 - (djm) OpenBSD CVS SyncDamien Miller
- otto@cvs.openbsd.org 2005/04/05 13:45:31 [ssh-keygen.c]
2005-05-26typoDamien Miller
2005-05-26 - (djm) [mpaux.c mpaux.h Makefile.in] Remove old mpaux.[ch] code, it has notDamien Miller
been used for a while
2005-05-26tiny KNF nitDamien Miller
2005-05-26 - Release 4.1p1Damien Miller
2005-05-25 - (dtucker) [openbsd-compat/bsd-cygwin_util.c] Ensure sufficient memoryDarren Tucker
allocation when retrieving core Windows environment. Add CYGWIN variable to propagated variables. Patch from vinschen at redhat.com, ok djm@
2005-05-25 - (dtucker) [auth-pam.c] Since people don't seem to be getting the messageDarren Tucker
that USE_POSIX_THREADS is unsupported, not recommended and generally a bad idea, it is now known as UNSUPPORTED_POSIX_THREADS_HACK. Attempting to use USE_POSIX_THREADS will now generate an error so we don't silently change behaviour. ok djm@
2005-05-25 - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]Damien Miller
[contrib/suse/openssh.spec] Update spec file versions to 4.1p1
2005-05-24restore portable-specific tweakDamien Miller