CVS: cvs.openbsd.org: src

2017-09-10 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2017/09/11 00:53:06 Modified files: usr.bin/tmux : tmux.1 Log message: Mention that filter is a format.

CVS: cvs.openbsd.org: src

2017-09-10 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2017/09/11 00:40:46 Modified files: usr.bin/tmux : grid.c Log message: Do not free more lines than are available in the history.

CVS: cvs.openbsd.org: src

2017-09-10 Thread Jonathan Gray
CVSROOT:/cvs Module name:src Changes by: j...@cvs.openbsd.org2017/09/10 23:50:53 Modified files: sys/arch/armv7/omap: amdisplay.c Log message: Avoid using an uninitialised variable. Found by the clang static analyser. ok ians@

CVS: cvs.openbsd.org: src

2017-09-10 Thread Jonathan Gray
CVSROOT:/cvs Module name:src Changes by: j...@cvs.openbsd.org2017/09/10 23:44:22 Modified files: sys/arch/armv7/omap: nxphdmi.c Log message: Don't test if an array is NULL. Fixes the build with clang which raised a -Wtautological-pointer-compare warning. ok ians@

CVS: cvs.openbsd.org: src

2017-09-10 Thread Jonathan Gray
CVSROOT:/cvs Module name:src Changes by: j...@cvs.openbsd.org2017/09/10 23:38:51 Modified files: sys/arch/arm/mainbus: mainbus.c Log message: Remove whitespace in inline assembly output constraint strings. While gcc is documented as ignoring whitespace in any positio

CVS: cvs.openbsd.org: src

2017-09-10 Thread Ingo Schwarze
CVSROOT:/cvs Module name:src Changes by: schwa...@cvs.openbsd.org2017/09/10 15:50:36 Modified files: include: strings.h Log message: str[n]casecmp_l(3) appeared in POSIX 2008, not in XPG 4; phessler@ reported that this oversight broke an armv7 bulk build;

CVS: cvs.openbsd.org: src

2017-09-10 Thread Philip Guenther
CVSROOT:/cvs Module name:src Changes by: guent...@cvs.openbsd.org2017/09/10 12:20:00 Modified files: lib/libc/termios: tcflow.c tcsendbreak.c lib/libc/gen : sysconf.c shm_open.c Log message: shm_open(), sysconf(), tcflow(), and tcsendbreak() are not per

CVS: cvs.openbsd.org: src

2017-09-10 Thread Philip Guenther
CVSROOT:/cvs Module name:src Changes by: guent...@cvs.openbsd.org2017/09/10 12:16:03 Modified files: bin/pax: pat_rep.c Log message: Backslash escapes the next character in filename patterns. ok millert@

CVS: cvs.openbsd.org: src

2017-09-10 Thread Ingo Schwarze
CVSROOT:/cvs Module name:src Changes by: schwa...@cvs.openbsd.org2017/09/10 10:30:26 Modified files: lib/libc/gen : getcwd.3 Log message: Fix spelling of 4.3BSD-Net/2.

CVS: cvs.openbsd.org: src

2017-09-10 Thread Ingo Schwarze
CVSROOT:/cvs Module name:src Changes by: schwa...@cvs.openbsd.org2017/09/10 10:24:44 Modified files: usr.sbin/pwd_mkdb: pwd_mkdb.8 Log message: Assorted simple improvements: - Considerably simplify the first paragraph; suggested by Raf Czlonka. - No need to say tw

CVS: cvs.openbsd.org: src

2017-09-10 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2017/09/10 08:36:12 Modified files: usr.bin/tmux : grid.c Log message: Previously, extended cell data was never reduced in size even when the cell was overwritten. With a large history this can be a substa

CVS: cvs.openbsd.org: src

2017-09-10 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs Module name:src Changes by: jas...@cvs.openbsd.org 2017/09/10 07:10:05 Modified files: sys/dev/usb: urng.c Log message: - call usbd_deactivate() rather than simply returning in case of errors - explicitly clear sc_xfer upon detach - fix spacing in urng_s

CVS: cvs.openbsd.org: src

2017-09-10 Thread Tom Cosgrove
CVSROOT:/cvs Module name:src Changes by: t...@cvs.openbsd.org2017/09/10 05:30:43 Modified files: lib/libc/gen : sysctl.3 usr.bin/pctr : pctr.c Log message: sysctl strings include the termingating NUL character in both in and out lengths Prompted by Nan X

CVS: cvs.openbsd.org: src

2017-09-10 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2017/09/10 02:01:23 Modified files: usr.bin/tmux : input.c Log message: Apply timeout to CAN and RS which also wait for ST.

CVS: cvs.openbsd.org: src

2017-09-10 Thread Theo Buehler
CVSROOT:/cvs Module name:src Changes by: t...@cvs.openbsd.org2017/09/10 01:29:39 Modified files: usr.bin/tftp : tftp.c Log message: Use monotonic clock for statistics display. From Scott Cheloha. ok dlg