OpenBSD src changes summary for 2015-12-26
==========================================

bin/cp                                  bin/csh
bin/ksh                                 bin/mv
etc/rc.d/mountd                         etc/rc.d/smtpd
games/adventure                         games/atc
games/backgammon                        games/battlestar
games/bs                                games/canfield
games/cribbage                          games/gomoku
games/hack                              games/hangman
games/hunt                              games/mille
games/phantasia                         games/pom
games/robots                            games/sail
games/worm                              gnu
sys/dev/pci                             usr.bin/finger
usr.bin/login                           usr.bin/ssh
usr.sbin/gpioctl                        usr.sbin/pppd

== bin =============================================================== 01/07 ==

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

cp

  ~ extern.h                              ~ utils.c

  > Set the times, mode, and flags on symlinks when doing cp -p (or mv across
  > filesystems)
  > problem noted by Carsten Kunze (carsten.kunze (at) arcor.de) (guenther@)

csh

  ~ alloc.c                               ~ csh.c
  ~ csh.h                                 ~ dir.c
  ~ dol.c                                 ~ error.c
  ~ exec.c                                ~ exp.c
  ~ extern.h                              ~ file.c
  ~ func.c                                ~ glob.c
  ~ hist.c                                ~ lex.c
  ~ misc.c                                ~ parse.c
  ~ proc.c                                ~ sem.c
  ~ set.c                                 

  > Replace handrolled xfree() function by directly using free(3)
  > OK mmcc@ (mestre@)

ksh

  ~ ksh.1                                 

  > remove special characters; diff from michael reed (jmc@)

mv

  ~ cp.c                                  

  > Set the times, mode, and flags on symlinks when doing cp -p (or mv across
  > filesystems)
  > problem noted by Carsten Kunze (carsten.kunze (at) arcor.de) (guenther@)

== etc =============================================================== 02/07 ==

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

rc.d/mountd

  ~ rc.d/mountd                           

  > mountd(8) changes require a pexp.
  > ok deraadt@ (krw@)

  ~ rc.d/mountd                           

  > Remove blank line for consistency with other rc.d scripts; no change in
  > behavior. (ajacoutot@)

rc.d/smtpd

  ~ rc.d/smtpd                            

  > Remove blank line for consistency with other rc.d scripts; no change in
  > behavior. (ajacoutot@)

== games ============================================================= 03/07 ==

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

adventure

  ~ extern.h                              

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

atc

  ~ extern.h                              

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

backgammon

  ~ common_source/back.h                  

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

battlestar

  ~ extern.h                              

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

bs

  ~ bs.c                                  

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

canfield

  ~ canfield/canfield.c                   

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

cribbage

  ~ cribbage.h                            

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

gomoku

  ~ gomoku.h                              

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

hack

  ~ hack.h                                

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

hangman

  ~ hangman.h                             

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

hunt

  ~ hunt/hunt.c                           ~ huntd/server.h

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

mille

  ~ mille.h                               

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

phantasia

  ~ misc.c                                ~ setup.c

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

pom

  ~ pom.c                                 

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

robots

  ~ robots.h                              

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

sail

  ~ extern.h                              

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

worm

  ~ worm.c                                

  > Set as __dead a few more functions, that don't return, on games/
  > With precious tip, help and also OK from tb@ (mestre@)

== gnu =============================================================== 04/07 ==

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

gnu

  ~ gcc/gcc/config/mips/sync.S            

  > Fix branch delay slots. Found while making test builds of ports. (visa@)

== sys =============================================================== 05/07 ==

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

dev/pci

  ~ pcidevs                               

  > Add Perle Speed8 LE. (kettenis@)

  ~ pcidevs.h                             ~ pcidevs_data.h

  > regen (kettenis@)

  ~ pucdata.c                             

  > Add support for the Perle Speed8 LE. (kettenis@)

== usr.bin =========================================================== 06/07 ==

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

finger

  ~ util.c                                

  > Use pread/pwrite instead separate lseek+read/write for lastlog.
  > Cast to off_t before multiplication to avoid truncation on ILP32
  > ok kettenis@ mmcc@ (guenther@)

login

  ~ login.c                               

  > Use pread/pwrite instead separate lseek+read/write for lastlog.
  > Cast to off_t before multiplication to avoid truncation on ILP32
  > ok kettenis@ mmcc@ (guenther@)

ssh

  ~ clientloop.c                          ~ mux.c

  > adjust pledge promises for ControlMaster: when using "ask" or "autoask",
  > the process will use ssh-askpass for asking confirmation.
  > problem found by halex@
  > ok halex@ (semarie@)

  ~ sshlogin.c                            

  > Use pread/pwrite instead separate lseek+read/write for lastlog.
  > Cast to off_t before multiplication to avoid truncation on ILP32
  > ok kettenis@ mmcc@ (guenther@)

== usr.sbin ========================================================== 07/07 ==

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

gpioctl

  ~ gpioctl.c                             

  > bzero -> memset. No binary change.
  > ok tb@ (mmcc@)

pppd

  ~ auth.c                                

  > Use pread/pwrite instead separate lseek+read/write for lastlog.
  > Cast to off_t before multiplication to avoid truncation on ILP32
  > ok kettenis@ mmcc@ (guenther@)

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

Reply via email to