CVS: cvs.openbsd.org: src

2015-05-29 Thread Masao Uebayashi
CVSROOT:/cvs Module name:src Changes by: uebay...@cvs.openbsd.org2015/05/29 01:21:09 Modified files: lib/libc/arch/amd64/string: bcmp.S bzero.S ffs.S memchr.S memmove.S memset.S strchr.S strcmp.S

CVS: cvs.openbsd.org: src

2015-05-29 Thread Eric Faurot
CVSROOT:/cvs Module name:src Changes by: e...@cvs.openbsd.org2015/05/29 02:49:37 Modified files: lib/libc/asr : asr.c asr_private.h getaddrinfo_async.c gethostnamadr_async.c getnetnamadr_async.c Log message: fix a possible off-by-one when

CVS: cvs.openbsd.org: src

2015-05-29 Thread Masao Uebayashi
CVSROOT:/cvs Module name:src Changes by: uebay...@cvs.openbsd.org2015/05/29 02:50:12 Modified files: lib/libc/arch/amd64/gen: _setjmp.S fabs.S flt_rounds.S fpgetmask.S fpgetround.S fpgetsticky.S

CVS: cvs.openbsd.org: src

2015-05-29 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2015/05/29 01:30:28 Modified files: usr.bin/file : file.c Log message: Silently fall back to /etc/magic if ~/.magic can't be opened, ok deraadt stsp

CVS: cvs.openbsd.org: src

2015-05-29 Thread Damien Miller
CVSROOT:/cvs Module name:src Changes by: d...@cvs.openbsd.org2015/05/29 00:47:43 Modified files: usr.bin/ssh: Makefile.inc Log message: put back SSH1 for now - we want to make sure we don't regress it for the 6.9 release; ok deraadt@

CVS: cvs.openbsd.org: src

2015-05-29 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2015/05/29 05:59:01 Modified files: usr.bin/file : file.c Log message: Make things a little less confusing by making fill_buffer self-contained and return both the buffer and amount filled rather than

CVS: cvs.openbsd.org: src

2015-05-29 Thread Masao Uebayashi
CVSROOT:/cvs Module name:src Changes by: uebay...@cvs.openbsd.org2015/05/29 03:25:28 Modified files: lib/libc/arch/amd64/net: htonl.S htons.S ntohl.S ntohs.S Log message: Put END() where appropriate. While here, kill redundant use of _C_LABEL() in ENTRY().

CVS: cvs.openbsd.org: src

2015-05-29 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2015/05/29 05:03:37 Modified files: usr.bin/file : file.c Log message: If reading into buffer, correct the stored file size at EOF, we don't want to look at any garbage that might already be in the buffer

CVS: cvs.openbsd.org: src

2015-05-29 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2015/05/29 06:33:41 Modified files: usr.bin/file : file.c Log message: Only mmap() on regular files; mmap() on /dev/stdin will happily map as much as we ask for but only the first page will be usable. (We

CVS: cvs.openbsd.org: src

2015-05-29 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2015/05/29 06:38:28 Modified files: usr.bin/file : sandbox.c Log message: file(1) needs access(/etc/localtime) for localtime().

CVS: cvs.openbsd.org: src

2015-05-29 Thread Kenneth R Westerback
CVSROOT:/cvs Module name:src Changes by: k...@cvs.openbsd.org2015/05/29 07:48:45 Modified files: sys/dev: softraid.c softraid_raid5.c softraid_raid6.c Log message: Nuke annoying whitespace nits to shrink some future diffs.

CVS: cvs.openbsd.org: src

2015-05-29 Thread Kenneth R Westerback
CVSROOT:/cvs Module name:src Changes by: k...@cvs.openbsd.org2015/05/29 07:54:26 Modified files: sys/arch/amd64/stand/libsa: softraid.c sys/arch/i386/stand/libsa: softraid.c Log message: Nuke annoying whitespace nits to shrink some future diffs.

CVS: cvs.openbsd.org: src

2015-05-29 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2015/05/29 08:15:41 Modified files: usr.bin/file : magic-load.c magic.h Log message: I got confused and made the strength multiplier 20, it should be 10.

CVS: cvs.openbsd.org: src

2015-05-29 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2015/05/29 09:58:34 Modified files: usr.bin/file : file.c sandbox.c Log message: millert points out I can just call tzset() early to avoid having to permit access() in the child.

CVS: cvs.openbsd.org: src

2015-05-29 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2015/05/29 09:58:01 Modified files: usr.bin/file : magic-test.c Log message: Use gmtime not localtime when we want UTC, I got it right in one place but not in another two. I expect I was confused by the

CVS: cvs.openbsd.org: src

2015-05-29 Thread Theo de Raadt
CVSROOT:/cvs Module name:src Changes by: dera...@cvs.openbsd.org 2015/05/29 09:57:36 Modified files: sbin/fsck : fsck.c fsutil.c Log message: do not need non-NULL-check before free(p), other minor refactoring from Benjamin Baier

CVS: cvs.openbsd.org: src

2015-05-29 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2015/05/29 08:52:10 Modified files: usr.bin/file : magic-test.c Log message: The case-insensitive flag (c) for string and search tests doesn't make the entire match case sensitive, only lower case

CVS: cvs.openbsd.org: src

2015-05-29 Thread Theo de Raadt
CVSROOT:/cvs Module name:src Changes by: dera...@cvs.openbsd.org 2015/05/29 09:53:46 Modified files: sbin/fsck : fsck.c Log message: remove duplicate assignments; from Benjamin Baier

CVS: cvs.openbsd.org: src

2015-05-29 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2015/05/29 09:11:08 Modified files: usr.bin/file : magic-test.c Log message: Don't stop at the first successful test unless it has generated some output.

CVS: cvs.openbsd.org: src

2015-05-29 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2015/05/29 09:12:11 Modified files: regress/usr.bin/file: t18.out Log message: Update file(1) regress (less verbose ELF output).

CVS: cvs.openbsd.org: src

2015-05-29 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2015/05/29 17:12:38 Modified files: usr.bin/tmux : format.c Log message: Expand formats again inside #(), and free the temporaries.

CVS: cvs.openbsd.org: src

2015-05-29 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2015/05/29 17:26:52 Modified files: usr.bin/tmux : format.c Log message: Don't use special strings if #() commands fail, just remove the format (as if the command produced nothing). Makes constructions

CVS: cvs.openbsd.org: src

2015-05-29 Thread Nicholas Marriott
CVSROOT:/cvs Module name:src Changes by: n...@cvs.openbsd.org2015/05/29 17:02:27 Modified files: usr.bin/tmux : cmd-new-session.c Log message: Use RB_MIN to get the lowest index for the current window when creating grouped sessions, rather than using RB_ROOT.

CVS: cvs.openbsd.org: src

2015-05-29 Thread Jonathan Gray
CVSROOT:/cvs Module name:src Changes by: j...@cvs.openbsd.org2015/05/29 20:17:36 Modified files: sys/arch/armv7/omap: ommmc.c sys/arch/armv7/imx: imxesdhc.c sys/arch/armv7/exynos: exesdhc.c Log message: fix the build when SDHC_DEBUG is defined

CVS: cvs.openbsd.org: src

2015-05-29 Thread Theo de Raadt
CVSROOT:/cvs Module name:src Changes by: dera...@cvs.openbsd.org 2015/05/29 20:49:23 Modified files: sys/dev/pci: if_iwm.c Log message: cleanup attach message

CVS: cvs.openbsd.org: src

2015-05-29 Thread Jonathan Gray
CVSROOT:/cvs Module name:src Changes by: j...@cvs.openbsd.org2015/05/29 21:20:54 Modified files: sys/arch/armv7/imx: imxesdhc.c Log message: Set the sdmmc(4) emmc highspeed flag if the capability register claims it is supported.

CVS: cvs.openbsd.org: src

2015-05-29 Thread Miod Vallat
CVSROOT:/cvs Module name:src Changes by: m...@cvs.openbsd.org2015/05/29 13:12:26 Modified files: sys/arch/alpha/include: exec.h libexec/ld.so/alpha: ldasm.S rtld_machine.c Log message: Make ld.so on alpha cope with binaries built with secureplt (where secure

CVS: cvs.openbsd.org: src

2015-05-29 Thread Miod Vallat
CVSROOT:/cvs Module name:src Changes by: m...@cvs.openbsd.org2015/05/29 14:30:49 Modified files: distrib/sets/lists/comp: md.vax share/mk : bsd.own.mk Log message: Switch vax to bunnytils 2.17.