CVS: cvs.openbsd.org: src

2018-07-21 Thread Claudio Jeker
CVSROOT:/cvs
Module name:src
Changes by: clau...@cvs.openbsd.org 2018/07/21 01:27:54

Modified files:
sbin/ping  : ping.c 

Log message:
There is no need to initialise global and static local variables to zero,
they are like that by default.
OK florian@



CVS: cvs.openbsd.org: xenocara

2018-07-21 Thread Matthieu Herrb
CVSROOT:/cvs
Module name:xenocara
Changes by: matth...@cvs.openbsd.org2018/07/21 03:16:42

Modified files:
app/xterm  : xtermcfg.h 

Log message:
Explicitely disable paste64 and readline options, to disable bracketed paste.

readline was not enabled, but paste64 which was on by default enables it.
requested by deraadt@



CVS: cvs.openbsd.org: xenocara

2018-07-21 Thread Matthieu Herrb
CVSROOT:/cvs
Module name:xenocara
Changes by: matth...@cvs.openbsd.org2018/07/21 03:31:23

Modified files:
app/xterm  : xtermcfg.h 

Log message:
use #define XXX  0 to explicitelty disable an option.



CVS: cvs.openbsd.org: src

2018-07-21 Thread Anton Lindqvist
CVSROOT:/cvs
Module name:src
Changes by: an...@cvs.openbsd.org   2018/07/21 03:35:08

Modified files:
sys/ufs/ffs: ffs_vnops.c 

Log message:
Include the vnode type in the panic message in ffs_write(), just like ffs_read()
does.

ok deraadt@ kettenis@



CVS: cvs.openbsd.org: src

2018-07-21 Thread Jason McIntyre
CVSROOT:/cvs
Module name:src
Changes by: j...@cvs.openbsd.org2018/07/21 03:35:50

Modified files:
usr.sbin/rad   : rad.conf.5 

Log message:
sort;



CVS: cvs.openbsd.org: src

2018-07-21 Thread Jason McIntyre
CVSROOT:/cvs
Module name:src
Changes by: j...@cvs.openbsd.org2018/07/21 03:39:25

Modified files:
lib/libfuse: fuse_new.3 

Log message:
comment out a dead Xr;



CVS: cvs.openbsd.org: src

2018-07-21 Thread Kenneth R Westerback
CVSROOT:/cvs
Module name:src
Changes by: k...@cvs.openbsd.org2018/07/21 09:24:55

Modified files:
sbin/dhclient  : options.c 

Log message:
Reading past the end of a buffer is bad, Even if the
extra byte is always there. Even if the byte contains
innocuous data that isn't used. Eeven if a particular
level of optimization of a particular compiler avoids
it by processing things backwards. Bad.

So simplify and correct logic. Perhaps even proof the
code against future generations of clever compilers.

Pointed out by Brandon Falk. Thanks!

ok millert@ tb@



CVS: cvs.openbsd.org: www

2018-07-21 Thread Theo Buehler
CVSROOT:/cvs
Module name:www
Changes by: t...@cvs.openbsd.org2018/07/21 14:02:42

Modified files:
.  : stable.html 

Log message:
swap roles of GENERIC and GENERIC.MP and do some bumping for 6.3.



CVS: cvs.openbsd.org: www

2018-07-21 Thread Theo Buehler
CVSROOT:/cvs
Module name:www
Changes by: t...@cvs.openbsd.org2018/07/21 14:04:44

Modified files:
faq: upgrade63.html 

Log message:
add an XXXrelease to help remember stable.html



CVS: cvs.openbsd.org: src

2018-07-21 Thread Claudio Jeker
CVSROOT:/cvs
Module name:src
Changes by: clau...@cvs.openbsd.org 2018/07/22 00:03:17

Modified files:
usr.sbin/bgpd  : rde.c 

Log message:
Adjust a log message and make sure that the data pointer is never increased
beyond the end. There was no access to it but still bad style.
OK tb@



CVS: cvs.openbsd.org: src

2018-07-21 Thread Anton Lindqvist
CVSROOT:/cvs
Module name:src
Changes by: an...@cvs.openbsd.org   2018/07/22 00:31:17

Modified files:
sys/kern   : vfs_syscalls.c 

Log message:
Avoid a NULL pointer deref when calling fchown() on a file descriptor belonging
to a cloned device.

ok kettenis@



CVS: cvs.openbsd.org: src

2018-07-21 Thread Anton Lindqvist
CVSROOT:/cvs
Module name:src
Changes by: an...@cvs.openbsd.org   2018/07/22 00:35:47

src/regress/sys/kern/fchown

Update of /cvs/src/regress/sys/kern/fchown
In directory cvs.openbsd.org:/tmp/cvs-serv84550/fchown

Log Message:
Directory /cvs/src/regress/sys/kern/fchown added to the repository



CVS: cvs.openbsd.org: src

2018-07-21 Thread Anton Lindqvist
CVSROOT:/cvs
Module name:src
Changes by: an...@cvs.openbsd.org   2018/07/22 00:37:46

Added files:
regress/sys/kern/fchown: Makefile fchown.c 

Log message:
Add regress covering the recently fixed NULL pointer deref in fchown().



CVS: cvs.openbsd.org: src

2018-07-21 Thread Anton Lindqvist
CVSROOT:/cvs
Module name:src
Changes by: an...@cvs.openbsd.org   2018/07/22 00:39:46

Modified files:
regress/sys/kern: Makefile 

Log message:
hook up fchown