Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src Today's long session:



details:   https://anonhg.NetBSD.org/src/rev/952d4f257f59
branches:  netbsd-1-5
changeset: 490774:952d4f257f59
user:      he <he%NetBSD.org@localhost>
date:      Mon Feb 26 23:13:18 2001 +0000

description:
Today's long session:
 o usermod: improve handling of -l with -m
 o wscons(4): add a few options to synopsis
 o in6_ifattach.c: don't delete default route by mistake
 o in6.c: avoid EMSGSIZE when ND6 table not initialized
 o m68k: significantly improved memccpy implementation
 o rbootd: don't core dump if no interfaces are up
 o RISCPC: add commented-out StrongARM optimization flags
 o mount: check disklabel if device and node is given but not type
 o tftp/tftpd: use unsigned block number to support 32M files instead of 16M
 o ip6_output.c: remove misplaced semicolon
 o if_sip.c: Fix for multicast setup code
 o config: put both .S and .s files in SFILES so that ``make depends'' works
 o amiga install notes clarification
 o siop driver: don't queue commands while sense is pending
 o adw: fix DMA errors
 o user: make sure modified group has trailing newline
 o update ssh/sshd to that on the trunk.  Note: /dev/random now required.
 o an(4): add manual page
 o macppc mesh driver: match "chrp,mesh0" and fix Conner CFP1080 problem
 o rtl81x9 driver: don't copy Rx packet if it has invalid length
 o arc, bebox, hpcmips, mmeye and sgimips MAKEDEV fixes for RAW_PART
 o distrib/utils: also make x_umount
 o pciide: support Intel 82801BAM IDE controller
 o pciide: don't do Ultra-DMA on Ali chips which don't support it
 o netinet6: correct handling of option header, even if truncated
 o ALPHA config file update (add /dev/random + other stuff)
 o file(1) formatting fix
 o ad1848_isa.c: make it compile with AUDIO_DEBUG
 o kinit.c: fix bug with KerberosIV fallback lifetime calculation
 o disklabel_mbr.h: add MBR_IS_EXTENDED()
 o disklabel: several fixes & enhancements; -I being most significant
 o mbrlabel: several fixes & enhancements; update label only if requested
 o macppc awacs driver: make it compile on this branch
 o ipsec.conf(5) added
 o rc.conf(5) -- don't say we don't have sshd
 o sysinst: clarify message
 o raw_ip.c / raw_ip6.c: validate packet against ipsec policy
 o atari: fix y2k+1 problem
 o dest6.c / nd6.c: Tighten ND6/dest6 option bounds checks.

diffstat:

 CHANGES-1.5.1 |  402 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 399 insertions(+), 3 deletions(-)

diffs (truncated from 426 to 300 lines):

diff -r 703fbea103da -r 952d4f257f59 CHANGES-1.5.1
--- a/CHANGES-1.5.1     Mon Feb 26 22:59:26 2001 +0000
+++ b/CHANGES-1.5.1     Mon Feb 26 23:13:18 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: CHANGES-1.5.1,v 1.1.2.26 2001/02/04 20:34:38 he Exp $
+#      $NetBSD: CHANGES-1.5.1,v 1.1.2.27 2001/02/26 23:13:18 he Exp $
 
 A complete list of changes from NetBSD 1.5 to NetBSD 1.5.1:
 
@@ -622,14 +622,14 @@
 
   Ignore receive errors if VLAN_MTU is enabled.
 
-sys/netinet6/icmp6.c                           1.50,1.51
+sys/netinet6/icmp6.c                           1.50-1.51
 
   Only printf() IPv6 ICMP checksum errors under ND6_DEBUG.  Fixes
   PR#11911.
 
 sbin/ifconfig/ifconfig.c                       1.94
 
-  Initialize an uninitialized pointer. PR#11702.
+  Initialize an uninitialized pointer.  Fixes PR#11702.
 
 lib/libcrypto_idea/Makefile                    1.2
 lib/libcrypto_rc5/Makefile                     1.2
@@ -1136,3 +1136,399 @@
 sys/arch/macppc/conf/files.macppc              1.32
 
   Add new driver for Apple sound chip.
+
+usr.sbin/user/user.c                           1.36
+usr.sbin/user/usermod.8                                1.9
+
+  Improve handling of ``-l'' with ``-m'', and update documentation.
+  Fixes PR#11707.
+
+share/man/man4/wscons.4                                1.16
+
+  Add WSCOMPAT_USL_SYNCTIMEOUT, WS_KERNEL_MONOATTR, and WS_KERNEL_COLATTR
+  to synopsis.
+
+sys/netinet6/in6_ifattach.c                    1.33
+
+  Do not remove default route by mistake on interface removal.
+
+sys/netinet6/in6.c                             1.39
+
+  Workaround to avoid EMSGSIZE when ND6 table for outgoing interface
+  is not initialized (should result in "interface down").
+
+lib/libc/arch/m68k/string/Makefile.inc         1.3
+lib/libc/arch/m68k/string/memccpy.S            1.1
+
+  Implement a significantly improved version of memccpy().
+
+usr.sbin/rbootd/bpf.c                          1.11
+
+  Prevent core dump if no interfaces are up.
+
+sys/arch/arm32/conf/RISCPC                     1.29
+
+  Add commented-out StrongARM-specific optimization flags.
+
+sys/sys/disklabel.h                            1.61
+sbin/mount/mount.8                             1.30
+sbin/mount/mount.c                             1.48-1.49,1.51,1.54 via patch
+
+  If both special and node are given (but no type), the disklabel
+  is checked for the file system type before falling back to ffs.
+
+include/arpa/tftp.h                            1.6
+libexec/tftpd/tftpd.8                          1.13
+libexec/tftpd/tftpd.c                          1.19
+usr.bin/tftp/tftp.c                            1.12-1.14
+
+  Use unsigned variables for block number, thus allowing transfer 
+  of up to 32M files instead of 16M.
+
+sys/netinet6/ip6_output.c                      1.30
+
+  Remove a misplaced semicolon after ``if'' conditional.
+
+sys/dev/pci/if_sip.c                           1.24
+
+  Fix a bug in the DP83815 multicast setup code.
+
+usr.sbin/config/mkmakefile.c                   1.48 via patch
+
+  Put both .S and .s files in SFILES so ``make depends'' works
+  properly.  Fixes PR#12051.
+
+games/fortune/datfiles/fortunes                        1.20
+
+  Fix a simple typo.  Fixes PR#12150.
+
+distrib/notes/amiga/install                    1.28
+distrib/notes/amiga/prep                       1.25
+
+  Add a few minor clarifications.
+
+sys/dev/ic/siop.c                              1.39
+sys/dev/ic/siop_common.c                       1.12
+
+  Don't queue new commands to a device which has sense pending.
+
+sys/dev/ic/adw.c                               1.27
+
+  Fix for ``Advansys DMA errors''.  Fixes PR#12114 and PR#12158.
+
+sys/dev/pci/cs4280.c                           1.15 via patch
+
+  Fix problem when warm booting from Windows.
+
+usr.sbin/user/user.c                           1.37
+
+  Make sure that a modified group has a trailing newline.
+
+crypto/dist/ssh/LICENCE                                1.1.1.2
+crypto/dist/ssh/RFC.nroff                      1.1.1.2
+crypto/dist/ssh/atomicio.c                     1.2
+crypto/dist/ssh/auth-krb4.c                    1.1.1.2-1.1.1.3
+crypto/dist/ssh/auth-options.c                 1.1.1.2-1.1.1.4
+crypto/dist/ssh/auth-options.h                 1.1.1.2-1.1.1.3
+crypto/dist/ssh/auth-passwd.c                  1.1.1.2-1.1.1.4
+crypto/dist/ssh/auth-rh-rsa.c                  1.1.1.2-1.1.1.3
+crypto/dist/ssh/auth-rhosts.c                  1.3-1.5
+crypto/dist/ssh/auth-rsa.c                     1.1.1.2-1.1.1.3
+crypto/dist/ssh/auth.c                         1.2-1.3
+crypto/dist/ssh/auth.h                         1.1.1.2-1.1.1.4
+crypto/dist/ssh/auth1.c                                1.2-1.6
+crypto/dist/ssh/auth2.c                                1.2-1.4
+crypto/dist/ssh/authfd.c                       1.2
+crypto/dist/ssh/authfd.h                       1.1.1.2-1.1.1.3
+crypto/dist/ssh/authfile.c                     1.2-1.3
+crypto/dist/ssh/authfile.h                     1.1.1.2-1.1.1.3
+crypto/dist/ssh/bufaux.c                       1.1.1.2-1.1.1.3
+crypto/dist/ssh/bufaux.h                       1.1.1.2-1.1.1.3
+crypto/dist/ssh/buffer.c                       1.1.1.2-1.1.1.3
+crypto/dist/ssh/buffer.h                       1.1.1.2-1.1.1.3
+crypto/dist/ssh/canohost.c                     1.3-1.5
+crypto/dist/ssh/channels.c                     1.2-1.6
+crypto/dist/ssh/channels.h                     1.1.1.2-1.1.1.4
+crypto/dist/ssh/cipher.c                       1.3-1.4
+crypto/dist/ssh/cipher.h                       1.1.1.2-1.1.1.3
+crypto/dist/ssh/clientloop.c                   1.3-1.5
+crypto/dist/ssh/compat.c                       1.1.1.2-1.1.1.4
+crypto/dist/ssh/compat.h                       1.1.1.2-1.1.1.4
+crypto/dist/ssh/compress.c                     1.2-1.3
+crypto/dist/ssh/compress.h                     1.1.1.2-1.1.1.3
+crypto/dist/ssh/crc32.c                                1.1.1.2-1.1.1.3
+crypto/dist/ssh/crc32.h                                1.1.1.2-1.1.1.3
+crypto/dist/ssh/deattack.c                     1.3-1.4
+crypto/dist/ssh/deattack.h                     1.1.1.2-1.1.1.3
+crypto/dist/ssh/dispatch.c                     1.1.1.2-1.1.1.3
+crypto/dist/ssh/dispatch.h                     1.1.1.2
+crypto/dist/ssh/getput.h                       1.1.1.2-1.1.1.3
+crypto/dist/ssh/hostfile.c                     1.2
+crypto/dist/ssh/hostfile.h                     1.2-1.3
+crypto/dist/ssh/includes.h                     1.2-1.3
+crypto/dist/ssh/kex.c                          1.3-1.5
+crypto/dist/ssh/kex.h                          1.1.1.2-1.1.1.4
+crypto/dist/ssh/key.c                          1.2
+crypto/dist/ssh/key.h                          1.1.1.2-1.1.1.3
+crypto/dist/ssh/log-client.c                   1.1.1.2
+crypto/dist/ssh/log-server.c                   1.2-1.3
+crypto/dist/ssh/log.c                          1.1.1.2-1.1.1.3
+crypto/dist/ssh/login.c                                1.1.1.2-1.1.1.3
+crypto/dist/ssh/match.c                                1.1.1.2-1.1.1.3
+crypto/dist/ssh/match.h                                1.1.1.2-1.1.1.3
+crypto/dist/ssh/mpaux.c                                1.2-1.3
+crypto/dist/ssh/mpaux.h                                1.1.1.2-1.1.1.3
+crypto/dist/ssh/myproposal.h                   1.1.1.2-1.1.1.4
+crypto/dist/ssh/nchan.c                                1.1.1.2-1.1.1.3
+crypto/dist/ssh/nchan.h                                1.1.1.2
+crypto/dist/ssh/nchan.ms                       1.1.1.2
+crypto/dist/ssh/nchan2.ms                      1.1.1.2
+crypto/dist/ssh/packet.c                       1.2-1.6
+crypto/dist/ssh/packet.h                       1.1.1.2-1.1.1.3
+crypto/dist/ssh/pathnames.h                    1.2-1.4
+crypto/dist/ssh/pty.c                          1.2-1.3
+crypto/dist/ssh/pty.h                          1.1.1.2
+crypto/dist/ssh/radix.c                                1.1.1.2-1.1.1.3
+crypto/dist/ssh/random.c                       1.2-1.4
+crypto/dist/ssh/readconf.c                     1.2-1.5
+crypto/dist/ssh/readconf.h                     1.1.1.2-1.1.1.4
+crypto/dist/ssh/readpass.c                     1.2-1.3
+crypto/dist/ssh/rsa.c                          1.1.1.2-1.1.1.3
+crypto/dist/ssh/rsa.h                          1.1.1.2-1.1.1.3
+crypto/dist/ssh/scp.1                          1.1.1.2-1.1.1.3
+crypto/dist/ssh/scp.c                          1.2-1.8
+crypto/dist/ssh/servconf.c                     1.3-1.5
+crypto/dist/ssh/servconf.h                     1.3-1.5
+crypto/dist/ssh/serverloop.c                   1.2-1.5
+crypto/dist/ssh/session.c                      1.2-1.5
+crypto/dist/ssh/session.h                      1.1.1.2
+crypto/dist/ssh/sftp-server.8                  1.1.1.2-1.1.1.3
+crypto/dist/ssh/sftp-server.c                  1.2-1.7
+crypto/dist/ssh/ssh-add.1                      1.2-1.3
+crypto/dist/ssh/ssh-add.c                      1.3-1.6
+crypto/dist/ssh/ssh-agent.1                    1.2-1.3
+crypto/dist/ssh/ssh-agent.c                    1.3-1.6
+crypto/dist/ssh/ssh-keygen.1                   1.2-1.3
+crypto/dist/ssh/ssh-keygen.c                   1.3-1.5
+crypto/dist/ssh/ssh.1                          1.2-1.8
+crypto/dist/ssh/ssh.c                          1.3-1.7
+crypto/dist/ssh/ssh.h                          1.2-1.4
+crypto/dist/ssh/ssh2.h                         1.1.1.2-1.1.1.3
+crypto/dist/ssh/sshconnect.c                   1.2-1.6
+crypto/dist/ssh/sshconnect.h                   1.1.1.2-1.1.1.3
+crypto/dist/ssh/sshconnect1.c                  1.2-1.6
+crypto/dist/ssh/sshconnect2.c                  1.2-1.6
+crypto/dist/ssh/sshd.8                         1.3-1.7
+crypto/dist/ssh/sshd.c                         1.2-1.6
+crypto/dist/ssh/tildexpand.c                   1.2-1.3
+crypto/dist/ssh/ttymodes.c                     1.1.1.2
+crypto/dist/ssh/ttymodes.h                     1.1.1.2
+crypto/dist/ssh/uidswap.c                      1.1.1.2-1.1.1.3
+crypto/dist/ssh/uidswap.h                      1.1.1.2
+crypto/dist/ssh/uuencode.c                     1.2-1.3
+crypto/dist/ssh/uuencode.h                     1.1.1.2-1.1.1.3
+crypto/dist/ssh/version.h                      1.4-1.10
+crypto/dist/ssh/xmalloc.c                      1.2-1.3
+crypto/dist/ssh/xmalloc.h                      1.1.1.2
+crypto/dist/ssh/auth-skey.c                    deleted
+crypto/dist/ssh/client.h                       deleted
+crypto/dist/ssh/dsa.c                          deleted
+crypto/dist/ssh/dsa.h                          deleted
+crypto/dist/ssh/hmac.c                         deleted
+crypto/dist/ssh/hmac.h                         deleted
+crypto/dist/ssh/ssh.conf                       deleted
+crypto/dist/ssh/sshd.conf                      deleted
+crypto/dist/ssh/util.c                         deleted
+crypto/dist/ssh/atomicio.h                     1.1-1.2 (new)
+crypto/dist/ssh/auth-chall.c                   1.1-1.2 (new)
+crypto/dist/ssh/auth2-chall.c                  1.1 (new)
+crypto/dist/ssh/canohost.h                     1.1 (new)
+crypto/dist/ssh/cli.c                          1.1-1.3 (new)
+crypto/dist/ssh/cli.h                          1.1-1.1.1.2 (new)
+crypto/dist/ssh/clientloop.h                   1.1 (new)
+crypto/dist/ssh/dh.c                           1.1-1.2 (new)
+crypto/dist/ssh/dh.h                           1.1-1.1.1.2 (new)
+crypto/dist/ssh/groupaccess.c                  1.1 (new)
+crypto/dist/ssh/groupaccess.h                  1.1 (new)
+crypto/dist/ssh/log.h                          1.1 (new)
+crypto/dist/ssh/login.h                                1.1 (new)
+crypto/dist/ssh/mac.c                          1.1 (new)
+crypto/dist/ssh/mac.h                          1.1 (new)
+crypto/dist/ssh/misc.c                         1.1 (new)
+crypto/dist/ssh/misc.h                         1.1 (new)
+crypto/dist/ssh/openssh2netbsd                 1.1 (new)
+crypto/dist/ssh/radix.h                                1.1 (new)
+crypto/dist/ssh/random.h                       1.1-1.2 (new)
+crypto/dist/ssh/readpass.h                     1.1 (new)
+crypto/dist/ssh/rijndael.c                     1.1-1.1.1.2 (new)
+crypto/dist/ssh/rijndael.h                     1.1-1.1.1.2 (new)
+crypto/dist/ssh/serverloop.h                   1.1 (new)
+crypto/dist/ssh/sftp-client.c                  1.1-1.6 (new)
+crypto/dist/ssh/sftp-client.h                  1.1 (new)
+crypto/dist/ssh/sftp-common.c                  1.1 (new)
+crypto/dist/ssh/sftp-common.h                  1.1 (new)
+crypto/dist/ssh/sftp-int.c                     1.1-1.5 (new)
+crypto/dist/ssh/sftp-int.h                     1.1 (new)
+crypto/dist/ssh/sftp.1                         1.1-1.1.1.5 (new)
+crypto/dist/ssh/sftp.c                         1.1-1.3 (new)
+crypto/dist/ssh/sftp.h                         1.1 (new)
+crypto/dist/ssh/ssh-dss.c                      1.1-1.3 (new)
+crypto/dist/ssh/ssh-dss.h                      1.1-1.1.1.2 (new)
+crypto/dist/ssh/ssh-keyscan.1                  1.1-1.3 (new)
+crypto/dist/ssh/ssh-keyscan.c                  1.1-1.6 (new)
+crypto/dist/ssh/ssh-rsa.c                      1.1-1.3 (new)
+crypto/dist/ssh/ssh-rsa.h                      1.1-1.1.1.2 (new)
+crypto/dist/ssh/ssh1.h                         1.1 (new)
+crypto/dist/ssh/ssh_config                     1.1-1.2 (new)
+crypto/dist/ssh/sshd_config                    1.1-1.2 (new)
+crypto/dist/ssh/tildexpand.h                   1.1 (new)
+usr.bin/ssh/Makefile                           1.11 via patch
+usr.bin/ssh/Makefile.inc                       1.3-1.5
+usr.bin/ssh/libssh/Makefile                    1.5 via patch
+usr.bin/ssh/scp/Makefile                       1.2
+usr.bin/ssh/sftp-server/Makefile               1.1-1.2
+usr.bin/ssh/sftp/Makefile                      1.1
+usr.bin/ssh/ssh/Makefile                       1.2,1.4-1.5 via patch
+usr.bin/ssh/ssh-keyscan/Makefile               1.1
+usr.bin/ssh/sshd/Makefile                      1.2-1.3
+distrib/sets/lists/man/mi                      patch
+distrib/sets/lists/base/mi                     patch
+
+  Update SSH to version found on trunk as of 26 Feb 2001.
+  Note that /dev/random is now mandatory for ssh.
+  Added sftp, sftp-server, and ssh-keyscan.
+
+share/man/man4/an.4                            1.1-1.6 (new, via patch)
+share/man/man4/Makefile                                patch
+
+  Add manual page for Aironet/Cisco wireless cards.
+
+sys/arch/macppc/dev/mesh.c                     1.6-1.7
+
+  Match "chrp,mesh0", and fix Conner CFP1080 problem (PR#7612),



Home | Main Index | Thread Index | Old Index