CVS commit: src/share/mk

2015-10-19 Thread David A. Holland
Module Name:src Committed By: dholland Date: Mon Oct 19 17:08:11 UTC 2015 Modified Files: src/share/mk: bsd.man.mk Log Message: because I'm feeling tetchy, implement "make describe" for everything that has man pages. To generate a diff of this commit: cvs rdiff -u -r1.11

CVS commit: src/external/gpl2/lvm2/dist/daemons/clvmd

2015-11-08 Thread David A. Holland
Module Name:src Committed By: dholland Date: Mon Nov 9 00:53:57 UTC 2015 Modified Files: src/external/gpl2/lvm2/dist/daemons/clvmd: clvmd.c Log Message: Don't use %m in format strings sent to printf. To generate a diff of this commit: cvs rdiff -u -r1.1.1.3 -r1.2 \

CVS commit: src/doc/roadmaps

2015-11-19 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Nov 20 07:20:21 UTC 2015 Modified Files: src/doc/roadmaps: storage Log Message: Update the storage roadmap. Please review/comment... To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/doc/roadmaps/storage Pl

CVS commit: src/doc/roadmaps

2015-11-20 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Nov 20 08:13:41 UTC 2015 Modified Files: src/doc/roadmaps: storage Log Message: Add two more items: tls-maxphys and nvme support. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/doc/roadmaps/storage Plea

CVS commit: src/sys/ufs/lfs

2015-11-26 Thread David A. Holland
Module Name:src Committed By: dholland Date: Thu Nov 26 19:25:54 UTC 2015 Modified Files: src/sys/ufs/lfs: lfs.h Log Message: Update now-lying comment. To generate a diff of this commit: cvs rdiff -u -r1.196 -r1.197 src/sys/ufs/lfs/lfs.h Please note that diffs are not p

CVS commit: src/sys/arch/amd64/amd64

2015-11-28 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Nov 28 15:06:55 UTC 2015 Modified Files: src/sys/arch/amd64/amd64: trap.c Log Message: If the kernel jumps to NULL, print where it came from instead of trying to dereference and faulting again. To generate a diff of this c

CVS commit: src/sys/kern

2015-11-28 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Nov 28 15:26:29 UTC 2015 Modified Files: src/sys/kern: vfs_syscalls.c Log Message: Fix kern/50841: races in sys_lseek. To generate a diff of this commit: cvs rdiff -u -r1.503 -r1.504 src/sys/kern/vfs_syscalls.c Please not

CVS commit: src/sys/kern

2015-12-04 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Dec 5 05:23:35 UTC 2015 Modified Files: src/sys/kern: vfs_cache.c Log Message: Fix lying comment. To generate a diff of this commit: cvs rdiff -u -r1.108 -r1.109 src/sys/kern/vfs_cache.c Please note that diffs are not pu

CVS commit: src/usr.bin/what

2015-12-12 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Dec 12 09:50:12 UTC 2015 Modified Files: src/usr.bin/what: what.c Log Message: Remove spurious ARGSUSED. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/usr.bin/what/what.c Please note that diffs are not

CVS commit: src/usr.bin/what

2015-12-12 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Dec 12 09:52:40 UTC 2015 Modified Files: src/usr.bin/what: what.1 Log Message: Clarify that SCCS is a specific thing and not a generic thing. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/usr.bin/what/w

CVS commit: src/sys/fs/udf

2015-12-18 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Dec 19 03:16:09 UTC 2015 Modified Files: src/sys/fs/udf: udf_subr.c Log Message: Improve misleading variable name. Related to PR 50571. XXX: also there should be real bounds-check logic in here. XXX: if the on-disk data str

CVS commit: src/usr.bin/msgs

2015-12-30 Thread David A. Holland
Module Name:src Committed By: dholland Date: Thu Dec 31 01:16:47 UTC 2015 Modified Files: src/usr.bin/msgs: msgs.c Log Message: Avoid leaking a file handle on error opening the next file. From David Binderman in PR 50577. To generate a diff of this commit: cvs rdiff -u -

CVS commit: src/lib/libutil

2015-12-31 Thread David A. Holland
Module Name:src Committed By: dholland Date: Thu Dec 31 09:12:58 UTC 2015 Modified Files: src/lib/libutil: parsedate.y Log Message: Reformat grammar part according to my standards for yacc grammars. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/lib/li

CVS commit: src/tests/lib/libutil

2015-12-31 Thread David A. Holland
Module Name:src Committed By: dholland Date: Thu Dec 31 10:10:15 UTC 2015 Modified Files: src/tests/lib/libutil: t_parsedate.c Log Message: Fix the "Tuesday midnight" test to match what parsedate.y does; in particular it doesn't add a week if evaluating that on Wednesday.

CVS commit: src/tests/lib/libutil

2015-12-31 Thread David A. Holland
Module Name:src Committed By: dholland Date: Thu Dec 31 10:18:00 UTC 2015 Modified Files: src/tests/lib/libutil: t_parsedate.c Log Message: When evaluated on a Sunday, "next Sunday" means 7 days in the future, not 14. When evaluated on a Monday, it apparently means 13 days

CVS commit: src/lib/libutil

2015-12-31 Thread David A. Holland
Module Name:src Committed By: dholland Date: Thu Dec 31 10:31:07 UTC 2015 Modified Files: src/lib/libutil: parsedate.y Log Message: Always use localtime_r; I don't think any of this code is tripping itself up, but it's still good practice for library functions to not trash

CVS commit: src/lib/libutil

2015-12-31 Thread David A. Holland
Module Name:src Committed By: dholland Date: Thu Dec 31 10:52:06 UTC 2015 Modified Files: src/lib/libutil: parsedate.y Log Message: When computing relative months, use mktime() directly and don't call our Convert(). And check it for failure. This fixes three sets of proble

CVS commit: src/tests/lib/libutil

2015-12-31 Thread David A. Holland
Module Name:src Committed By: dholland Date: Thu Dec 31 10:56:13 UTC 2015 Modified Files: src/tests/lib/libutil: t_parsedate.c Log Message: Fix REL_CHECK error output; it had "expected" and "obtained" swapped. While here, improve the general legibility of the printout. Not

CVS commit: src/sys/dev/filemon

2016-01-07 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 8 07:16:13 UTC 2016 Modified Files: src/sys/dev/filemon: filemon.c Log Message: typo in debug print To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/sys/dev/filemon/filemon.c Please note that diffs a

CVS commit: src/sys/kern

2016-01-08 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Jan 9 07:52:38 UTC 2016 Modified Files: src/sys/kern: kern_fork.c sys_process.c Log Message: When doing an unlock/relock dance to avoid lock inversion, it's important to relock the lock you unlocked. Otherwise the lock you

CVS commit: src/sys/ufs/lfs

2016-01-09 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Jan 10 02:40:21 UTC 2016 Modified Files: src/sys/ufs/lfs: lfs_accessors.h Log Message: Fix two functions that were accidentally "static __unused" instead of "static __unused inline". Oops; but probably not actually harmful.

CVS commit: src/share/mk

2016-01-09 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Jan 10 03:59:34 UTC 2016 Modified Files: src/share/mk: bsd.sys.mk Log Message: For MKREPRO, substitute DESTDIR before NETBSDSRCDIR; then it has a chance of working if DESTDIR is under NETBSDSRCDIR (as happens with default ob

CVS commit: src/share/mk

2016-01-09 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Jan 10 06:13:21 UTC 2016 Modified Files: src/share/mk: bsd.sys.mk Log Message: Apparently it's important to do -Wp,-iremap,${DESTDIR}: and not -Wp,-iremap,${DESTDIR}/:/ Why this should matter for strings where the trail

CVS commit: src/sys/sys

2016-01-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Mon Jan 11 00:46:21 UTC 2016 Modified Files: src/sys/sys: buf.h Log Message: Add a CTASSERT for the condition required to make a conditionally-existing union member sort-of safe. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/sys

2016-01-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Mon Jan 11 01:08:09 UTC 2016 Modified Files: src/sys/sys: buf.h Log Message: Divide the list of struct buf ops into three categories: the ones that are part of bufferio(9) (or physio(9)) the ones that are part of buffercache

CVS commit: src/sys

2016-01-10 Thread David A. Holland
Module Name:src Committed By: dholland Date: Mon Jan 11 01:22:36 UTC 2016 Modified Files: src/sys/kern: vfs_bio.c src/sys/sys: buf.h Log Message: Whatever the point of this "biodone_vfs" global function pointer is (something rumpity?) declare it properly in a heade

CVS commit: src/include

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 21:55:57 UTC 2016 Modified Files: src/include: bm.h ifaddrs.h kvm.h link_aout.h login_cap.h nsswitch.h Log Message: u_char, u_int, u_long -> unsigned char, unsigned, unsigned long This makes these headers work withou

CVS commit: src/lib/libdm

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 22:11:28 UTC 2016 Modified Files: src/lib/libdm: dm.h Log Message: - Has __BEGIN_DECLS so needs sys/cdefs.h; - Needs stddef.h and stdint.h to be compilable on its own To generate a diff of this commit: cvs rdiff -u

CVS commit: src/lib/libdm

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 22:12:40 UTC 2016 Modified Files: src/lib/libdm: dm.3 Log Message: The actual header file for these functions is dm.h, not libdm.h. Bump date. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/lib/libd

CVS commit: src/lib/libpci

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 22:22:48 UTC 2016 Modified Files: src/lib/libpci: pci.h Log Message: u_int -> unsigned; also requires stddef.h and stdint.h to be compilable. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/lib/libpc

CVS commit: src/lib/libperfuse

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 22:25:50 UTC 2016 Modified Files: src/lib/libperfuse: perfuse.h Log Message: Needs sys/cdefs.h for __BEGIN_DECLS and sys/types.h for mode_t. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/lib/libper

CVS commit: src/include

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 22:26:45 UTC 2016 Modified Files: src/include: mntopts.h Log Message: Has __BEGIN_DECLS, needs sys/types.h. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/include/mntopts.h Please note that diffs

CVS commit: src/include

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 22:27:01 UTC 2016 Modified Files: src/include: bm.h Log Message: Needs stddef.h for size_t. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/include/bm.h Please note that diffs are not public domain;

CVS commit: src/sys/opencrypto

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 22:35:27 UTC 2016 Modified Files: src/sys/opencrypto: cryptodev.h Log Message: Needs sys/time.h for struct timespec. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/sys/opencrypto/cryptodev.h Plea

CVS commit: src/lib/librefuse

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 22:39:29 UTC 2016 Modified Files: src/lib/librefuse: fuse_opt.h Log Message: Needs stdint.h. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/lib/librefuse/fuse_opt.h Please note that diffs are not p

CVS commit: src/sys/sys

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 22:43:25 UTC 2016 Modified Files: src/sys/sys: vnode.h Log Message: Needs sys/time.h for struct timespec. To generate a diff of this commit: cvs rdiff -u -r1.256 -r1.257 src/sys/sys/vnode.h Please note that diffs a

CVS commit: src/sys/fs/msdosfs

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 22:48:18 UTC 2016 Modified Files: src/sys/fs/msdosfs: bootsect.h Log Message: u_int8_t -> uint8_t To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/fs/msdosfs/bootsect.h Please note that diffs are

CVS commit: src/sys/fs/msdosfs

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 22:53:36 UTC 2016 Modified Files: src/sys/fs/msdosfs: bpb.h direntry.h Log Message: u_int{8,16,32}_t -> uint{8,16,32}_t, also u_int -> unsigned and u_char -> unsigned char. To generate a diff of this commit: cvs rdi

CVS commit: src/common/include/prop

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:03:46 UTC 2016 Modified Files: src/common/include/prop: prop_dictionary.h Log Message: Needs prop_array.h to compile. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/common/include/prop/prop_dic

CVS commit: src/sys/ufs/ufs

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:06:10 UTC 2016 Modified Files: src/sys/ufs/ufs: dinode.h Log Message: u_int{16,32,64}_t -> uint{16,32,64}_t, for the benefit of userland. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/sys/ufs/

CVS commit: src/include/protocols

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:11:50 UTC 2016 Modified Files: src/include/protocols: dumprestore.h routed.h rwhod.h talkd.h timed.h Log Message: These all need stdint.h. Also, dumprestore.h needs ufs/ufs/dinode.h; in talkd.h use unsigned char i

CVS commit: src/include/protocols

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:13:20 UTC 2016 Modified Files: src/include/protocols: timed.h Log Message: Erm, fix previous. (also, as this protocol is externally defined it probably should use its own constant and not either of these system-def

CVS commit: src/include

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:15:42 UTC 2016 Modified Files: src/include: randomid.h Log Message: Needs stdint.h. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/include/randomid.h Please note that diffs are not public domain

CVS commit: src/include

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:15:58 UTC 2016 Modified Files: src/include: rmt.h Log Message: Needs sys/types.h for mode_t, off_t, ssize_t, and others. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/include/rmt.h Please note

CVS commit: src/include/rpcsvc

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:22:56 UTC 2016 Modified Files: src/include/rpcsvc: yp_prot.h Log Message: Include so XDR is defined. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/include/rpcsvc/yp_prot.h Please note that d

CVS commit: src/include/rpcsvc

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:23:13 UTC 2016 Modified Files: src/include/rpcsvc: ypclnt.h Log Message: Uses BEGIN_DECLS and needs sys/cdefs.h. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/include/rpcsvc/ypclnt.h Please n

CVS commit: src/lib/libskey

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:25:52 UTC 2016 Modified Files: src/lib/libskey: skey.h Log Message: Uses FILE *, needs stdio.h. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/lib/libskey/skey.h Please note that diffs are not

CVS commit: src/sys/sys

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:30:27 UTC 2016 Modified Files: src/sys/sys: ctype_bits.h Log Message: Uses BEGIN_DECLS, needs sys/cdefs.h. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/sys/ctype_bits.h Please note that di

CVS commit: src/sys/sys

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:31:30 UTC 2016 Modified Files: src/sys/sys: dirent.h Log Message: Uses __GNUC_PREREQ__, needs sys/cdefs.h. To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/sys/sys/dirent.h Please note that diff

CVS commit: src/sys/sys

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:33:42 UTC 2016 Modified Files: src/sys/sys: envsys.h Log Message: u_int -> unsigned To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 src/sys/sys/envsys.h Please note that diffs are not public domain

CVS commit: src/sys/sys

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:35:18 UTC 2016 Modified Files: src/sys/sys: fdio.h Log Message: u_int -> unsigned To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/sys/fdio.h Please note that diffs are not public domain; they

CVS commit: src/sys/sys

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:38:45 UTC 2016 Modified Files: src/sys/sys: pipe.h Log Message: Needs struct timespec. To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 src/sys/sys/pipe.h Please note that diffs are not public domai

CVS commit: src/sys/sys

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:42:14 UTC 2016 Modified Files: src/sys/sys: scanio.h Log Message: u_{long,short,char} -> unsigned {long,short,char} XXX: the structure in here incurs unwanted padding on LP64 platforms. To generate a diff of thi

CVS commit: src/sys/sys

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:44:33 UTC 2016 Modified Files: src/sys/sys: tape.h Log Message: Requires sys/time.h for struct timespec. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/sys/tape.h Please note that diffs are

CVS commit: src/sys/sys

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:46:07 UTC 2016 Modified Files: src/sys/sys: vadvise.h Log Message: Uses __BEGIN_DECLS and needs sys/cdefs.h. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/sys/vadvise.h Please note that d

CVS commit: src/sys/sys

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:47:04 UTC 2016 Modified Files: src/sys/sys: wdog.h Log Message: u_int -> unsigned To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/sys/wdog.h Please note that diffs are not public domain; they

CVS commit: src/lib/libusbhid

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:51:23 UTC 2016 Modified Files: src/lib/libusbhid: usbhid.h Log Message: Uses __BEGIN_DECLS so needs sys/cdefs.h; also needs stdint.h. And, while here, add missing include guard. To generate a diff of this commit:

CVS commit: src/include

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Jan 22 23:59:44 UTC 2016 Modified Files: src/include: utmp.h Log Message: Needs sys/cdefs.h for __BEGIN_DECLS. Also add time.h to get time_t, rather than doing the machine/ansi.h #ifdef dance, as it doesn't matter much what

CVS commit: src/lib

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Jan 23 00:43:43 UTC 2016 Modified Files: src/lib/libc/net: getifaddrs.3 src/lib/libc/string: bm.3 src/lib/libkvm: kvm_getlwps.3 kvm_read.3 src/lib/libpci: pci.3 src/lib/libutil: login_cap.3 Lo

CVS commit: src/include/rpc

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Jan 23 01:05:31 UTC 2016 Modified Files: src/include/rpc: auth.h auth_unix.h clnt.h clnt_soc.h pmap_clnt.h rpc.h rpcb_prot.x svc.h svc_soc.h xdr.h Log Message: u_int -> unsigned, u_long -> unsigned long, etc. T

CVS commit: src/sys/dev/usb

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Jan 23 01:15:23 UTC 2016 Modified Files: src/sys/dev/usb: usbhid.h Log Message: Use correct include guard. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/dev/usb/usbhid.h Please note that diffs are

CVS commit: src

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Jan 23 01:26:14 UTC 2016 Modified Files: src/include: ifaddrs.h link_aout.h login_cap.h nsswitch.h src/lib/libpci: pci.h src/sys/fs/msdosfs: direntry.h src/sys/sys: envsys.h fdio.h wdog.h Log Message:

CVS commit: src/usr.bin/rpcgen

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Jan 23 02:33:09 UTC 2016 Modified Files: src/usr.bin/rpcgen: rpc_cout.c rpc_hout.c rpc_parse.c rpc_tblout.c Log Message: u_int -> unsigned int, in some of the output. In the bulk of the output making this change would requi

CVS commit: src/include/rpc

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Jan 23 02:34:09 UTC 2016 Modified Files: src/include/rpc: auth.h auth_unix.h clnt.h clnt_soc.h pmap_clnt.h rpcb_prot.x svc.h svc_soc.h xdr.h Log Message: unsigned -> unsigned int in previous change to accomodate

CVS commit: src/include/rpc

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Jan 23 02:36:57 UTC 2016 Modified Files: src/include/rpc: svc.h Log Message: Needs sys/select.h for fd_set; fails only when _POSIX_SOURCE is defined, because then something else doesn't include it. (I guess.) To generate a

CVS commit: src/lib/libc/sys

2016-01-23 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Jan 23 08:17:18 UTC 2016 Modified Files: src/lib/libc/sys: getdents.2 Log Message: MAXNAMLEN, not MAXNAMELEN. From Giuseppe Gatta on netbsd-docs. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/lib/libc/s

CVS commit: src/sys/sys

2016-01-25 Thread David A. Holland
Module Name:src Committed By: dholland Date: Tue Jan 26 06:27:38 UTC 2016 Modified Files: src/sys/sys: wdog.h Log Message: typo in comment To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/sys/wdog.h Please note that diffs are not public domain; they a

CVS commit: src/usr.bin/units

2016-02-04 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Feb 5 03:30:08 UTC 2016 Modified Files: src/usr.bin/units: units.c Log Message: Improve the parser. Now we understand negative exponents; fixes PR 50768. Also handle negative numbers better in general (don't randomly drop

CVS commit: src/usr.bin/units

2016-02-04 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Feb 5 03:32:49 UTC 2016 Modified Files: src/usr.bin/units: units.c Log Message: Improve previous slightly; while we accept e.g. "meter2" to mean "meter^2", don't allow "meter-2" to be interpreted as "meter^-2" as that's ver

CVS commit: src/usr.bin/units

2016-02-04 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Feb 5 03:38:50 UTC 2016 Modified Files: src/usr.bin/units: units.lib Log Message: File watt in the right group, and accept W as well, as that's quite standard. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19

CVS commit: src/common/lib/libc/stdlib

2016-02-07 Thread David A. Holland
Module Name:src Committed By: dholland Date: Mon Feb 8 05:27:24 UTC 2016 Modified Files: src/common/lib/libc/stdlib: random.c Log Message: whitespace To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/common/lib/libc/stdlib/random.c Please note that diffs

CVS commit: src/share/misc

2016-02-13 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Feb 13 23:12:34 UTC 2016 Modified Files: src/share/misc: acronyms Log Message: DNF To generate a diff of this commit: cvs rdiff -u -r1.244 -r1.245 src/share/misc/acronyms Please note that diffs are not public domain; they

CVS commit: src/sys/arch/arc/stand/boot

2016-02-14 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Feb 14 18:01:45 UTC 2016 Modified Files: src/sys/arch/arc/stand/boot: disk.c Log Message: Add missing va_end. PR 50793 from David Binderman. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/arch/arc/stan

CVS commit: src/sys/arch/emips/stand/common

2016-02-14 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Feb 14 18:05:31 UTC 2016 Modified Files: src/sys/arch/emips/stand/common: printf.c Log Message: Fix wrong indent. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/arch/emips/stand/common/printf.c Please

CVS commit: src/sys/arch/emips/stand/common

2016-02-14 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Feb 14 18:04:47 UTC 2016 Modified Files: src/sys/arch/emips/stand/common: printf.c Log Message: Add missing va_end(). PR 50794 from David Binderman. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/arch/

CVS commit: src/sys/arch/powerpc/oea

2016-02-14 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Feb 14 18:07:49 UTC 2016 Modified Files: src/sys/arch/powerpc/oea: pmap.c Log Message: Add missing va_end; PR 50795 from David Binderman. To generate a diff of this commit: cvs rdiff -u -r1.92 -r1.93 src/sys/arch/powerpc/o

CVS commit: src/sys/arch/sgimips/stand/common

2016-02-14 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Feb 14 18:09:51 UTC 2016 Modified Files: src/sys/arch/sgimips/stand/common: disk.c Log Message: Add missing va_list, from David Binderman in PR 50796. XXX: this file and arch/arc/stand/boot/disk.c are cutpaste clones. To

CVS commit: src/sys/dev/ppbus

2016-02-14 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Feb 14 18:11:16 UTC 2016 Modified Files: src/sys/dev/ppbus: ppbus_msq.c Log Message: Add missing va_end, from David Binderman in PR 50797. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/dev/ppbus/ppb

CVS commit: src/sys/arch/powerpc/oea

2016-02-14 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Feb 14 18:12:31 UTC 2016 Modified Files: src/sys/arch/powerpc/oea: ofw_consinit.c Log Message: Add missing va_end, from David Binderman in PR 50798. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/sys/arc

CVS commit: src/external/gpl3

2016-02-14 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Feb 14 19:08:10 UTC 2016 Modified Files: src/external/gpl3/gcc.old/dist/gcc: gcc.c src/external/gpl3/gcc/dist/gcc: gcc.c Log Message: Restore the local change -gcc: internal compiler error: Killed (program cc1plus)

CVS commit: src/sys/arch/sgimips/dev

2016-02-14 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sun Feb 14 19:11:20 UTC 2016 Modified Files: src/sys/arch/sgimips/dev: crmfb.c Log Message: Remove extra stray break missed by Christos when committing PR 50783. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 sr

CVS commit: src/usr.bin/hexdump

2016-03-03 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Mar 4 02:46:19 UTC 2016 Modified Files: src/usr.bin/hexdump: display.c hexdump.h Log Message: use "static" To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 src/usr.bin/hexdump/display.c cvs rdiff -u -r1.13 -r

CVS commit: src/usr.bin/hexdump

2016-03-03 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Mar 4 02:54:38 UTC 2016 Modified Files: src/usr.bin/hexdump: display.c hexdump.c hexdump.h Log Message: Don't use one function for two different things. Two functions is the ticket. To generate a diff of this commit: cvs

CVS commit: src/usr.bin/hexdump

2016-03-03 Thread David A. Holland
Module Name:src Committed By: dholland Date: Fri Mar 4 03:02:52 UTC 2016 Modified Files: src/usr.bin/hexdump: display.c Log Message: Don't try to use stdin after clobbering it with a failed freopen(). Prevents an extra "Bad file descriptor" message when trying to hexdump

CVS commit: src/sbin/newfs

2016-03-07 Thread David A. Holland
Module Name:src Committed By: dholland Date: Mon Mar 7 15:09:55 UTC 2016 Modified Files: src/sbin/newfs: mkfs.c Log Message: Terminate expression with a semicolon, instead of accidentally splicing to the next line with a comma. Noticed by Christos. Has no actual effect, f

CVS commit: src/usr.sbin/rpc.lockd

2016-03-11 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 02:02:00 UTC 2016 Modified Files: src/usr.sbin/rpc.lockd: test.c Log Message: Remove trailing whitespace To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/rpc.lockd/test.c Please note that di

CVS commit: src/usr.sbin/rpc.lockd

2016-03-11 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 02:01:23 UTC 2016 Modified Files: src/usr.sbin/rpc.lockd: test.c Log Message: Fix operator precedence in complex conditional by separating out the assignment part. PR 50954 from David Binderman. While here, separate o

CVS commit: src/usr.sbin/rpc.lockd

2016-03-11 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 02:06:33 UTC 2016 Modified Files: src/usr.sbin/rpc.lockd: test.c Log Message: Clean up gcc warnings. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/usr.sbin/rpc.lockd/test.c Please note that diffs

CVS commit: src/usr.sbin/rpc.lockd

2016-03-11 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 02:07:44 UTC 2016 Modified Files: src/usr.sbin/rpc.lockd: test.c Log Message: Fix another conditional with wrong (missing) parens. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/usr.sbin/rpc.lockd/t

CVS commit: src/sys/arch/emips/stand/common

2016-03-11 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 02:13:35 UTC 2016 Modified Files: src/sys/arch/emips/stand/common: prom_iface.c Log Message: Refine previous so the output is all hex again. followup to PR 50942 To generate a diff of this commit: cvs rdiff -u -r1.5

CVS commit: src/sys/arch/atari/stand/tostools/file2swp

2016-03-11 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 02:15:50 UTC 2016 Modified Files: src/sys/arch/atari/stand/tostools/file2swp: file2swp.c Log Message: Fix syntax error in previous. Hi christos :-) (PR 50944) To generate a diff of this commit: cvs rdiff -u -r1.7 -r

CVS commit: src/sys/arch/atari/stand/tostools/file2swp

2016-03-11 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 02:17:05 UTC 2016 Modified Files: src/sys/arch/atari/stand/tostools/file2swp: file2swp.c Log Message: Remove unused variable, found by gcc. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 \ src/sys/a

CVS commit: src/usr.sbin/sup/source

2016-03-11 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 02:26:40 UTC 2016 Modified Files: src/usr.sbin/sup/source: scan.c Log Message: Don't cast malloc. To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 src/usr.sbin/sup/source/scan.c Please note that diffs

CVS commit: src/usr.sbin/sup/source

2016-03-11 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 02:27:31 UTC 2016 Modified Files: src/usr.sbin/sup/source: cvt.c Log Message: Close file on error path. PR 50925 from David Binderman. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/usr.sbin/sup/sou

CVS commit: src/usr.bin/systat

2016-03-11 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 02:39:01 UTC 2016 Modified Files: src/usr.bin/systat: systat.1 Log Message: NetBSD does actually support flat-panel displays. Even for systat(1). (noted by tnn) To generate a diff of this commit: cvs rdiff -u -r1.43

CVS commit: src/games/snake/snake

2016-03-11 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 03:13:52 UTC 2016 Modified Files: src/games/snake/snake: snake.6 Log Message: snake(6) supports LCD displays too. (noted by tnn) To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/games/snake/snake/sn

CVS commit: src/games/tetris

2016-03-11 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 03:14:59 UTC 2016 Modified Files: src/games/tetris: tetris.6 Log Message: tetris(6) is not limited to CRT displays. noted by tnn To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/games/tetris/tetris.

CVS commit: src/usr.bin/apply

2016-03-12 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 21:20:17 UTC 2016 Modified Files: src/usr.bin/apply: apply.c Log Message: Minor tidyups. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/usr.bin/apply/apply.c Please note that diffs are not public

CVS commit: src/usr.bin/apply

2016-03-12 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 22:07:48 UTC 2016 Modified Files: src/usr.bin/apply: apply.1 Log Message: Rework for clarity. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/usr.bin/apply/apply.1 Please note that diffs are not p

CVS commit: src/usr.bin/apply

2016-03-12 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Mar 12 22:17:23 UTC 2016 Modified Files: src/usr.bin/apply: apply.1 Log Message: Add some additional BUGS. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/usr.bin/apply/apply.1 Please note that diffs are

<    11   12   13   14   15   16   17   18   19   20   >