OpenBSD src changes summary for 2017-02-10
==========================================

regress/sys                             sys/arch/alpha/compile
sys/arch/amd64/compile                  sys/arch/arm64/compile
sys/arch/armv7/compile                  sys/arch/hppa/compile
sys/arch/i386/compile                   sys/arch/landisk/compile
sys/arch/loongson/compile               sys/arch/luna88k/compile
sys/arch/macppc/compile                 sys/arch/octeon/compile
sys/arch/sgi/compile                    sys/arch/socppc/compile
sys/arch/sparc64/compile                sys/dev/pci
sys/dev/usb                             usr.bin/mandoc
usr.bin/ssh                             usr.bin/tmux
usr.sbin/pkg_add                        

== regress =========================================================== 01/04 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/regress

sys

  ~ nfs/Makefile                          

  > Create and connect to unix domain sockets on NFS mounted file system.
  > (bluhm@)

== sys =============================================================== 02/04 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sys

arch/alpha/compile

  ~ Makefile.inc                          

  > Unbreak 'config -p'.
  > ok tb@, jca@ (mpi@)

arch/amd64/compile

  ~ Makefile.inc                          

  > Unbreak 'config -p'.
  > ok tb@, jca@ (mpi@)

arch/arm64/compile

  ~ Makefile.inc                          

  > Unbreak 'config -p'.
  > ok tb@, jca@ (mpi@)

arch/armv7/compile

  ~ Makefile.inc                          

  > Unbreak 'config -p'.
  > ok tb@, jca@ (mpi@)

arch/hppa/compile

  ~ Makefile.inc                          

  > Unbreak 'config -p'.
  > ok tb@, jca@ (mpi@)

arch/i386/compile

  ~ Makefile.inc                          

  > Unbreak 'config -p'.
  > ok tb@, jca@ (mpi@)

arch/landisk/compile

  ~ Makefile.inc                          

  > Unbreak 'config -p'.
  > ok tb@, jca@ (mpi@)

arch/loongson/compile

  ~ Makefile.inc                          

  > Unbreak 'config -p'.
  > ok tb@, jca@ (mpi@)

arch/luna88k/compile

  ~ Makefile.inc                          

  > Unbreak 'config -p'.
  > ok tb@, jca@ (mpi@)

arch/macppc/compile

  ~ Makefile.inc                          

  > Unbreak 'config -p'.
  > ok tb@, jca@ (mpi@)

arch/octeon/compile

  ~ Makefile.inc                          

  > Unbreak 'config -p'.
  > ok tb@, jca@ (mpi@)

arch/sgi/compile

  ~ Makefile.inc                          

  > Unbreak 'config -p'.
  > ok tb@, jca@ (mpi@)

arch/socppc/compile

  ~ Makefile.inc                          

  > Unbreak 'config -p'.
  > ok tb@, jca@ (mpi@)

arch/sparc64/compile

  ~ Makefile.inc                          

  > Unbreak 'config -p'.
  > ok tb@, jca@ (mpi@)

dev/pci

  ~ envy.c                                

  > Remove unused variable. From Michael W. Bombardieri <mb at ii.net>.
  > Thanks. (ratchov@)

  ~ azalia.c                              

  > Update link to intel HDA spec. From
  > Alexey Suslikov <alexey.suslikov at gmail.com>.
  > Thanks. (ratchov@)

dev/usb

  ~ umidi.c                               

  > Use __func__ for DPRINTF's as we do in other parts of the
  > code. From Michael W. Bombardieri" <mb at ii.net>. Thanks. (ratchov@)

  ~ uaudio.c                              

  > Fix links to usb-audio specs. From Michael Reed <m.reed at mykolab.com>.
  > Thanks. (ratchov@)

== usr.bin =========================================================== 03/04 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin

mandoc

  ~ main.c                                ~ manconf.h
  ~ mandoc.1                              ~ manpath.c
  ~ mdoc_macro.c                          ~ tree.c

  > In -Ttree output mode, show the BROKEN node flag and
  > provide a -Onoval output option to show the unvalidated tree. (schwarze@)

  ~ mdoc_macro.c                          

  > Oops, the previous commit unintentionally included this file.
  > The intended commit message for rev. 1.167 is:
  > In the SYNOPSIS, .Nm blocks can get broken if one of their children
  > gets broken.  In that case, mark them as BROKEN and ENDED and make
  > sure they get closed out together with the child.
  > Fixes tree corruption leeding to a NULL dereference found by tb@
  > with afl(1) in: .Sh SYNOPSIS .Bl .Oo .Nm .Bk .Oc .It (where .Bk is
  > the child and .Oo is the breaker).
  > A simpler form of the same corruption (without crash) is visible in:
  > .Sh SYNOPSIS .Ao .Nm .Bo .Ac .Bc text
  > where the text ended up inside the .Nm (child .Bo, breaker .Ao).
  > (schwarze@)

  ~ mdoc_macro.c                          

  > For child macros of block-end macros, only scan backwards for pending
  > breakers unless the parent of the block is already closed.  While
  > the scanning is needed in cases like ".Ac Bo" for broken Ao, it is
  > useless and crashy in cases like ".Ac Bc" for non-broken Ao.
  > This fixes a NULL pointer dereference that tb@ found with afl(1).
  > (schwarze@)

ssh

  ~ ssh-keygen.c                          

  > Sanitise escape sequences in key comments sent to printf but preserve
  > valid UTF-8 when the locale supports it; bz#2520 ok dtucker@ (djm@)

  ~ sshkey.c                              

  > bring back r1.34 that was backed out for problems loading public keys:
  > translate OpenSSL error codes to something more
  > meaninful; bz#2522 reported by Jakub Jelen, ok dtucker@
  > with additional fix from Jakub Jelen to solve the backout.
  > bz#2525 bz#2523 re-ok dtucker@ (djm@)

tmux

  ~ tmux.1                                ~ tmux.h
  ~ tty-keys.c                            ~ tty.c

  > Don't use a bufferevent for the tty, so we can keep better track of what
  > is being written and when.
  > Also a manpage typo fix from jmc@. (nicm@)

  ~ tty.c                                 

  > Add rather than delete the event if more writing to come. (nicm@)

  ~ tty.c                                 

  > Revert; committed from the wrong directory. (nicm@)

  ~ tty.c                                 

  > Add not delete the event if more to write. (nicm@)

== usr.sbin ========================================================== 04/04 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.sbin

pkg_add

  ~ OpenBSD/LibSpec.pm                    ~ OpenBSD/SharedLibs.pm

  > add glue to be able to ask "give me the highest number shared library with
  > that stem".  needed later for new fancy stuff in check-lib-depends
  > okay sthen@ (espie@)

===============================================================================
_______________________________________________
odc mailing list
[email protected]
http://www.squish.net/mailman/listinfo/odc

Reply via email to