diff options
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 171 |
1 files changed, 95 insertions, 76 deletions
@@ -1,3 +1,22 @@ | |||
1 | 20000713 | ||
2 | - (djm) OpenBSD CVS updates | ||
3 | - provos@cvs.openbsd.org 2000/07/13 16:53:22 | ||
4 | [aux.c readconf.c servconf.c ssh.h] | ||
5 | allow multiple whitespace but only one '=' between tokens, bug report from | ||
6 | Ralf S. Engelschall <rse@engelschall.com> but different fix. okay deraadt@ | ||
7 | - provos@cvs.openbsd.org 2000/07/13 17:14:09 | ||
8 | [clientloop.c] | ||
9 | typo; todd@fries.net | ||
10 | - provos@cvs.openbsd.org 2000/07/13 17:19:31 | ||
11 | [scp.c] | ||
12 | close can fail on AFS, report error; from Greg Hudson <ghudson@mit.edu> | ||
13 | - markus@cvs.openbsd.org 2000/07/14 16:59:46 | ||
14 | [readconf.c servconf.c] | ||
15 | allow leading whitespace. ok niels | ||
16 | - djm@cvs.openbsd.org 2000/07/14 22:01:38 | ||
17 | [ssh-keygen.c ssh.c] | ||
18 | Always create ~/.ssh with mode 700; ok Markus | ||
19 | |||
1 | 20000712 | 20 | 20000712 |
2 | - (djm) Remove -lresolve for Reliant Unix | 21 | - (djm) Remove -lresolve for Reliant Unix |
3 | - (djm) OpenBSD CVS Updates: | 22 | - (djm) OpenBSD CVS Updates: |
@@ -247,7 +266,7 @@ | |||
247 | - Don't try to retrieve lastlog from wtmp/wtmpx if DISABLE_LASTLOG is | 266 | - Don't try to retrieve lastlog from wtmp/wtmpx if DISABLE_LASTLOG is |
248 | def'd | 267 | def'd |
249 | - Set AIX to use preformatted manpages | 268 | - Set AIX to use preformatted manpages |
250 | 269 | ||
251 | 20000610 | 270 | 20000610 |
252 | - (djm) Minor doc tweaks | 271 | - (djm) Minor doc tweaks |
253 | - (djm) Fix for configure on bash2 from Jim Knoble <jmknoble@jmknoble.cx> | 272 | - (djm) Fix for configure on bash2 from Jim Knoble <jmknoble@jmknoble.cx> |
@@ -304,7 +323,7 @@ | |||
304 | - (andre) New login code | 323 | - (andre) New login code |
305 | - Remove bsd-login.[ch] and all the OpenBSD-derived code in login.c | 324 | - Remove bsd-login.[ch] and all the OpenBSD-derived code in login.c |
306 | - Add loginrec.[ch], logintest.c and autoconf code | 325 | - Add loginrec.[ch], logintest.c and autoconf code |
307 | 326 | ||
308 | 20000531 | 327 | 20000531 |
309 | - Cleanup of auth.c, login.c and fake-* | 328 | - Cleanup of auth.c, login.c and fake-* |
310 | - Cleanup of auth-pam.c, save and print "account expired" error messages | 329 | - Cleanup of auth-pam.c, save and print "account expired" error messages |
@@ -366,9 +385,9 @@ | |||
366 | - Gives useful error message if PRNG initialisation fails | 385 | - Gives useful error message if PRNG initialisation fails |
367 | - Reduced ssh startup delay | 386 | - Reduced ssh startup delay |
368 | - Measures cumulative command time rather than the time between reads | 387 | - Measures cumulative command time rather than the time between reads |
369 | after select() | 388 | after select() |
370 | - 'fixprogs' perl script to eliminate non-working entropy commands, and | 389 | - 'fixprogs' perl script to eliminate non-working entropy commands, and |
371 | optionally run 'ent' to measure command entropy | 390 | optionally run 'ent' to measure command entropy |
372 | - Applied Tom Bertelson's <tbert@abac.com> AIX authentication fix | 391 | - Applied Tom Bertelson's <tbert@abac.com> AIX authentication fix |
373 | - Avoid WCOREDUMP complation errors for systems that lack it | 392 | - Avoid WCOREDUMP complation errors for systems that lack it |
374 | - Avoid SIGCHLD warnings from entropy commands | 393 | - Avoid SIGCHLD warnings from entropy commands |
@@ -853,64 +872,64 @@ | |||
853 | 872 | ||
854 | 20000309 | 873 | 20000309 |
855 | - OpenBSD CVS updates to v1.2.3 | 874 | - OpenBSD CVS updates to v1.2.3 |
856 | [ssh.h atomicio.c] | 875 | [ssh.h atomicio.c] |
857 | - int atomicio -> ssize_t (for alpha). ok deraadt@ | 876 | - int atomicio -> ssize_t (for alpha). ok deraadt@ |
858 | [auth-rsa.c] | 877 | [auth-rsa.c] |
859 | - delay MD5 computation until client sends response, free() early, cleanup. | 878 | - delay MD5 computation until client sends response, free() early, cleanup. |
860 | [cipher.c] | 879 | [cipher.c] |
861 | - void* -> unsigned char*, ok niels@ | 880 | - void* -> unsigned char*, ok niels@ |
862 | [hostfile.c] | 881 | [hostfile.c] |
863 | - remove unused variable 'len'. fix comments. | 882 | - remove unused variable 'len'. fix comments. |
864 | - remove unused variable | 883 | - remove unused variable |
865 | [log-client.c log-server.c] | 884 | [log-client.c log-server.c] |
866 | - rename a cpp symbol, to avoid param.h collision | 885 | - rename a cpp symbol, to avoid param.h collision |
867 | [packet.c] | 886 | [packet.c] |
868 | - missing xfree() | 887 | - missing xfree() |
869 | - getsockname() requires initialized tolen; andy@guildsoftware.com | 888 | - getsockname() requires initialized tolen; andy@guildsoftware.com |
870 | - use getpeername() in packet_connection_is_on_socket(), fixes sshd -i; | 889 | - use getpeername() in packet_connection_is_on_socket(), fixes sshd -i; |
871 | from Holger.Trapp@Informatik.TU-Chemnitz.DE | 890 | from Holger.Trapp@Informatik.TU-Chemnitz.DE |
872 | [pty.c pty.h] | 891 | [pty.c pty.h] |
873 | - register cleanup for pty earlier. move code for pty-owner handling to | 892 | - register cleanup for pty earlier. move code for pty-owner handling to |
874 | pty.c ok provos@, dugsong@ | ||
875 | [readconf.c] | ||
876 | - turn off x11-fwd for the client, too. | ||
877 | [rsa.c] | ||
878 | - PKCS#1 padding | ||
879 | [scp.c] | ||
880 | - allow '.' in usernames; from jedgar@fxp.org | ||
881 | [servconf.c] | ||
882 | - typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de | ||
883 | - sync with sshd_config | ||
884 | [ssh-keygen.c] | ||
885 | - enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@ | ||
886 | [ssh.1] | ||
887 | - Change invalid 'CHAT' loglevel to 'VERBOSE' | ||
888 | [ssh.c] | ||
889 | - suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp | ||
890 | - turn off x11-fwd for the client, too. | ||
891 | [sshconnect.c] | ||
892 | - missing xfree() | ||
893 | - retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp. | ||
894 | - read error vs. "Connection closed by remote host" | ||
895 | [sshd.8] | ||
896 | - ie. -> i.e., | ||
897 | - do not link to a commercial page.. | ||
898 | - sync with sshd_config | ||
899 | [sshd.c] | ||
900 | - no need for poll.h; from bright@wintelcom.net | ||
901 | - log with level log() not fatal() if peer behaves badly. | ||
902 | - don't panic if client behaves strange. ok deraadt@ | ||
903 | - make no-port-forwarding for RSA keys deny both -L and -R style fwding | ||
904 | - delay close() of pty until the pty has been chowned back to root | ||
905 | - oops, fix comment, too. | ||
906 | - missing xfree() | ||
907 | - move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too. | ||
908 | (http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907) | ||
909 | - register cleanup for pty earlier. move code for pty-owner handling to | ||
910 | pty.c ok provos@, dugsong@ | 893 | pty.c ok provos@, dugsong@ |
911 | - create x11 cookie file | 894 | [readconf.c] |
912 | - fix pr 1113, fclose() -> pclose(), todo: remote popen() | 895 | - turn off x11-fwd for the client, too. |
913 | - version 1.2.3 | 896 | [rsa.c] |
897 | - PKCS#1 padding | ||
898 | [scp.c] | ||
899 | - allow '.' in usernames; from jedgar@fxp.org | ||
900 | [servconf.c] | ||
901 | - typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de | ||
902 | - sync with sshd_config | ||
903 | [ssh-keygen.c] | ||
904 | - enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@ | ||
905 | [ssh.1] | ||
906 | - Change invalid 'CHAT' loglevel to 'VERBOSE' | ||
907 | [ssh.c] | ||
908 | - suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp | ||
909 | - turn off x11-fwd for the client, too. | ||
910 | [sshconnect.c] | ||
911 | - missing xfree() | ||
912 | - retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp. | ||
913 | - read error vs. "Connection closed by remote host" | ||
914 | [sshd.8] | ||
915 | - ie. -> i.e., | ||
916 | - do not link to a commercial page.. | ||
917 | - sync with sshd_config | ||
918 | [sshd.c] | ||
919 | - no need for poll.h; from bright@wintelcom.net | ||
920 | - log with level log() not fatal() if peer behaves badly. | ||
921 | - don't panic if client behaves strange. ok deraadt@ | ||
922 | - make no-port-forwarding for RSA keys deny both -L and -R style fwding | ||
923 | - delay close() of pty until the pty has been chowned back to root | ||
924 | - oops, fix comment, too. | ||
925 | - missing xfree() | ||
926 | - move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too. | ||
927 | (http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907) | ||
928 | - register cleanup for pty earlier. move code for pty-owner handling to | ||
929 | pty.c ok provos@, dugsong@ | ||
930 | - create x11 cookie file | ||
931 | - fix pr 1113, fclose() -> pclose(), todo: remote popen() | ||
932 | - version 1.2.3 | ||
914 | - Cleaned up | 933 | - Cleaned up |
915 | - Removed warning workaround for Linux and devpts filesystems (no longer | 934 | - Removed warning workaround for Linux and devpts filesystems (no longer |
916 | required after OpenBSD updates) | 935 | required after OpenBSD updates) |
@@ -1656,21 +1675,21 @@ | |||
1656 | modular. | 1675 | modular. |
1657 | - Revised autoconf support for enabling/disabling askpass support. | 1676 | - Revised autoconf support for enabling/disabling askpass support. |
1658 | - Merged more OpenBSD CVS changes: | 1677 | - Merged more OpenBSD CVS changes: |
1659 | [auth-krb4.c] | 1678 | [auth-krb4.c] |
1660 | - disconnect if getpeername() fails | 1679 | - disconnect if getpeername() fails |
1661 | - missing xfree(*client) | 1680 | - missing xfree(*client) |
1662 | [canohost.c] | 1681 | [canohost.c] |
1663 | - disconnect if getpeername() fails | 1682 | - disconnect if getpeername() fails |
1664 | - fix comment: we _do_ disconnect if ip-options are set | 1683 | - fix comment: we _do_ disconnect if ip-options are set |
1665 | [sshd.c] | 1684 | [sshd.c] |
1666 | - disconnect if getpeername() fails | 1685 | - disconnect if getpeername() fails |
1667 | - move checking of remote port to central place | 1686 | - move checking of remote port to central place |
1668 | [auth-rhosts.c] move checking of remote port to central place | 1687 | [auth-rhosts.c] move checking of remote port to central place |
1669 | [log-server.c] avoid extra fd per sshd, from millert@ | 1688 | [log-server.c] avoid extra fd per sshd, from millert@ |
1670 | [readconf.c] print _all_ bad config-options in ssh(1), too | 1689 | [readconf.c] print _all_ bad config-options in ssh(1), too |
1671 | [readconf.h] print _all_ bad config-options in ssh(1), too | 1690 | [readconf.h] print _all_ bad config-options in ssh(1), too |
1672 | [ssh.c] print _all_ bad config-options in ssh(1), too | 1691 | [ssh.c] print _all_ bad config-options in ssh(1), too |
1673 | [sshconnect.c] disconnect if getpeername() fails | 1692 | [sshconnect.c] disconnect if getpeername() fails |
1674 | - OpenBSD's changes to sshd.c broke the PAM stuff, re-merged it. | 1693 | - OpenBSD's changes to sshd.c broke the PAM stuff, re-merged it. |
1675 | - Various small cleanups to bring diff (against OpenBSD) size down. | 1694 | - Various small cleanups to bring diff (against OpenBSD) size down. |
1676 | - Merged more Solaris compability from Marc G. Fournier | 1695 | - Merged more Solaris compability from Marc G. Fournier |