CVS commit: src/doc

2011-11-01 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed Nov 2 05:24:55 UTC 2011 Modified Files: src/doc: CHANGES Log Message: zoneinfo: Import tzdata2011n. [apb 2002] To generate a diff of this commit: cvs rdiff -u -r1.1620 -r1.1621 src/doc/CHANGES Please note that diffs are n

CVS commit: src/lib/libc/time

2011-11-02 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed Nov 2 19:59:40 UTC 2011 Modified Files: src/lib/libc/time: ctime.3 Log Message: Use double quotes to prevent multiple adjacent spaces from being squashed to a single space on output. To generate a diff of this commit: cvs rdif

CVS commit: src/etc

2011-11-08 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Nov 8 19:11:19 UTC 2011 Modified Files: src/etc: MAKEDEV.tmpl Log Message: In the nooutput function, don't mess with file descritor 4 at the outer level; do it inside a subshell context so as not to interfere with a different us

CVS commit: src/etc

2011-11-08 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Nov 8 19:36:30 UTC 2011 Modified Files: src/etc: MAKEDEV.tmpl Log Message: The previous change made "nooutput -2" discard both stdout and stderr, whereas it should discard only stderr. This commit should fix that problem. To

CVS commit: src/sys/kern

2011-11-20 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sun Nov 20 21:27:26 UTC 2011 Modified Files: src/sys/kern: subr_kmem.c Log Message: Use va_copy to avoid undefined behaviour in handling the va_list arg. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 src/sys/kern/su

CVS commit: src/share/mk

2011-11-22 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Nov 22 18:25:48 UTC 2011 Modified Files: src/share/mk: bsd.clean.mk Log Message: Use :Q to deal with the case that CLEANFILES or CLEANDIRFILES contains quoted substrings (such as file names with spaces). Problem reported by Josep

CVS commit: src/sys/sys

2011-12-17 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sat Dec 17 12:59:22 UTC 2011 Modified Files: src/sys/sys: rnd.h Log Message: Add comments for some ioctls and structs; fix a typo in another comment. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/sys/sys/rnd.h

CVS commit: src/sbin/rndctl

2011-12-17 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sat Dec 17 13:18:21 UTC 2011 Modified Files: src/sbin/rndctl: rndctl.c Log Message: Make "rndctl -L" overwrite the file with zeros, not with the same data that was just read from the file. To generate a diff of this commit: cvs rdi

CVS commit: src/tests/lib/libc/time

2011-12-17 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sat Dec 17 19:04:07 UTC 2011 Modified Files: src/tests/lib/libc/time: t_mktime.c Log Message: Add some tests for timegm(3) close to the epoch. In particular, 1969-12-31 23:59:59 should convert to (time_t)-1 with errno = 0. To gene

CVS commit: src/tests/lib/libutil

2011-12-17 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sat Dec 17 19:07:34 UTC 2011 Modified Files: src/tests/lib/libutil: t_parsedate.c Log Message: Add some tests for dates several centures into the past and future. These currently fail, but I'll fix that soon. To generate a diff of

CVS commit: src/lib/libutil

2011-12-17 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sat Dec 17 19:14:10 UTC 2011 Modified Files: src/lib/libutil: parsedate.y Log Message: Use mktime(3) instead of hand-coded equivalent. Don't treat negative results as errors (we should be able to handle years before 1970). XXX: This

CVS commit: src/sys/dev

2011-12-19 Thread Alan Barrett
Module Name:src Committed By: apb Date: Mon Dec 19 21:44:08 UTC 2011 Modified Files: src/sys/dev: rndpseudo.c Log Message: Return ENOTTY, not EINVAL, when the ioctl command is unrecognised. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/dev/rndpseudo

CVS commit: src/sys

2011-12-19 Thread Alan Barrett
Module Name:src Committed By: apb Date: Mon Dec 19 21:53:52 UTC 2011 Modified Files: src/sys/compat/common: Makefile src/sys/dev: rndpseudo.c Added Files: src/sys/compat/common: rndpseudo_50.c src/sys/compat/sys: rnd.h Log Message: Add COMPAT_50 and

CVS commit: src/sys/rump/dev/lib/librnd

2011-12-19 Thread Alan Barrett
Module Name:src Committed By: apb Date: Mon Dec 19 21:56:18 UTC 2011 Modified Files: src/sys/rump/dev/lib/librnd: Makefile Log Message: SRCS += ${.CURDIR}/../../../../compat/common/rndpseudo_50.c to fix build errors like this: DESTDIR/usr/lib/librumpdev_rnd.so: undefined

CVS commit: src/sys/dev

2011-12-20 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Dec 20 12:45:00 UTC 2011 Modified Files: src/sys/dev: rndpseudo.c Log Message: #include "opt_compat_netbsd.h" To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/dev/rndpseudo.c Please note that diffs are not p

CVS commit: src/sys/dev

2011-12-20 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Dec 20 13:42:19 UTC 2011 Modified Files: src/sys/dev: rndpseudo.c Log Message: Revert previous; the #include was already present, and I got confused by a merge error. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6

CVS commit: src/sys/rump/dev/lib/librnd

2011-12-20 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Dec 20 17:09:04 UTC 2011 Modified Files: src/sys/rump/dev/lib/librnd: Makefile Log Message: Put the path to the compat/common directory in a .PATH line, not in an element of the SRCS list. This should fix a problem in which buil

CVS commit: src/usr.bin/man

2011-12-27 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Dec 27 13:15:55 UTC 2011 Modified Files: src/usr.bin/man: man.conf.5 Log Message: Document the reality that the _build and _crunch commands should each contain exactly one "%s". The previous description allowed any number of "%s

CVS commit: src/sys/dev

2012-01-04 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed Jan 4 13:40:53 UTC 2012 Modified Files: src/sys/dev: clockctl.c Log Message: When processing ioctl CLOCKCTL_NTP_ADJTIME, set the return value from ntp_timestatus instead of leaving it uninitialised, and don't use copyout(9) beca

CVS commit: src/sys/compat

2012-01-04 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed Jan 4 13:45:55 UTC 2012 Modified Files: src/sys/compat/common: kern_time_50.c src/sys/compat/sys: clockctl.h Log Message: Provide a COMPAT_50 version of the CLOCKCTL_NTP_ADJTIME ioctl. When time_t was changed from 32 to

CVS commit: src/sys/compat/common

2012-01-04 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed Jan 4 14:31:17 UTC 2012 Modified Files: src/sys/compat/common: kern_time_50.c Log Message: Instead of calling clockctl_ioctl directly, lookup the cdevsw and call its d_ioctl function. This should fix an undefined reference to `

CVS commit: src/usr.bin/error

2012-01-22 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sun Jan 22 09:25:27 UTC 2012 Modified Files: src/usr.bin/error: error.1 Log Message: Fix the csh(1) example ("make ... |& error ...", not "make ... | error ..."), and add a sh(1) example ("make ... 2>&1 | error ..."). To generate a

CVS commit: othersrc/usr.bin/protoz

2012-02-13 Thread Alan Barrett
Module Name:othersrc Committed By: apb Date: Mon Feb 13 15:04:49 UTC 2012 Modified Files: othersrc/usr.bin/protoz: protoz Log Message: Move the sed script into a shell function, and add command line argument processing code to filter stdin to stdout when invoked without ar

CVS commit: src/doc

2012-02-14 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Feb 14 21:19:19 UTC 2012 Modified Files: src/doc: BUILDING.mdoc Log Message: Document build.sh "live-image" and "install-image" targets. These were documented in revision 1.97 of src/BUILDING, but were not documented in src/doc/

CVS commit: src/doc

2012-02-14 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Feb 14 21:32:07 UTC 2012 Modified Files: src/doc: BUILDING.mdoc Log Message: Minor changes to wording in the documentation for build.sh install-image and live-image. To generate a diff of this commit: cvs rdiff -u -r1.86 -r1.87

CVS commit: src

2012-02-14 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Feb 14 21:33:03 UTC 2012 Modified Files: src: BUILDING Log Message: Regen from revision 1.87 of doc/BUILDING.mdoc. To generate a diff of this commit: cvs rdiff -u -r1.97 -r1.98 src/BUILDING Please note that diffs are not publi

CVS commit: src/doc

2012-02-16 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Feb 17 07:46:54 UTC 2012 Modified Files: src/doc: CHANGES Log Message: s/tmux/tmux(1)/ in the entry about removal of window(1) To generate a diff of this commit: cvs rdiff -u -r1.1672 -r1.1673 src/doc/CHANGES Please note that

CVS commit: src/usr.sbin/postinstall

2012-02-16 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Feb 17 07:51:20 UTC 2012 Modified Files: src/usr.sbin/postinstall: postinstall Log Message: Add "pwd_mkdb" item, which checks whether /etc/pwd.db is in the new format, and runs "pwd_mkdb -V 1 /etc/master.passwd" to fix it. To g

CVS commit: src/doc

2012-02-16 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Feb 17 07:51:51 UTC 2012 Modified Files: src/doc: CHANGES Log Message: document postinstall pwd_mkdb item To generate a diff of this commit: cvs rdiff -u -r1.1673 -r1.1674 src/doc/CHANGES Please note that diffs are not public

CVS commit: src/usr.bin/db

2012-02-17 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Feb 17 11:18:55 UTC 2012 Modified Files: src/usr.bin/db: db.1 Log Message: db(1) "-N" flag means "Include the NUL byte at the end of the key or value". (Previously, the description was reversed.) Also expand the description. T

CVS commit: src/usr.bin/db

2012-02-17 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Feb 17 11:37:33 UTC 2012 Modified Files: src/usr.bin/db: db.c Log Message: The "-N" command line option means "include the terminating NUL byte", so rename the corresponding flag from F_NO_NUL to F_INCLUDE_NUL to match the behavi

CVS commit: src/gnu/dist/groff/tmac

2012-02-21 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Feb 21 10:43:46 UTC 2012 Modified Files: src/gnu/dist/groff/tmac: doc-syms groff_mdoc.man Log Message: Add a definition for ".St -isoC-2011". The equivalent definition was already in external/bsd/mdocml/dist/st.in To generate

CVS commit: src/usr.sbin/postinstall

2012-02-22 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed Feb 22 16:27:39 UTC 2012 Modified Files: src/usr.sbin/postinstall: postinstall Log Message: Fix a call to pwd_mkdb in the case that DEST_DIR is the empty string. To generate a diff of this commit: cvs rdiff -u -r1.132 -r1.133 s

CVS commit: src/usr.sbin/postinstall

2012-02-22 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed Feb 22 16:42:07 UTC 2012 Modified Files: src/usr.sbin/postinstall: postinstall Log Message: quote SRC_DIR and DEST_DIR everywhere. Also wrap some long lines. To generate a diff of this commit: cvs rdiff -u -r1.133 -r1.134 src/

CVS commit: src/usr.bin/ftp

2012-02-24 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Feb 24 19:40:49 UTC 2012 Modified Files: src/usr.bin/ftp: fetch.c Log Message: When given an URL that contains "://" but is not recognised, print an error message. Now "ftp https://foo/bar"; prints ftp: Unsupported URL sche

CVS commit: src/usr.bin/ftp

2012-02-24 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Feb 24 19:53:31 UTC 2012 Modified Files: src/usr.bin/ftp: fetch.c Log Message: subtracting two pointers yields ptrdiff_t, so cast it to int. To generate a diff of this commit: cvs rdiff -u -r1.196 -r1.197 src/usr.bin/ftp/fetch.

CVS commit: src/share/zoneinfo

2012-03-01 Thread Alan Barrett
Module Name:src Committed By: apb Date: Thu Mar 1 21:19:22 UTC 2012 Update of /cvsroot/src/share/zoneinfo In directory ivanova.netbsd.org:/tmp/cvs-serv1097 Log Message: Import tzdata2012a from ftp://munnari.oz.au/pub/tzdata2012a.tar.gz. Major changes since tzdata2011i: Chile

CVS commit: src/share/zoneinfo

2012-03-01 Thread Alan Barrett
Module Name:src Committed By: apb Date: Thu Mar 1 21:22:02 UTC 2012 Modified Files: src/share/zoneinfo: australasia Log Message: Merge tzdata2012a from ftp://munnari.oz.au/pub/tzdata2012a.tar.gz. Major changes since tzdata2011n: Chile 2011/2012 and 2012/2013 summer ti

CVS commit: src/doc

2012-03-01 Thread Alan Barrett
Module Name:src Committed By: apb Date: Thu Mar 1 22:30:41 UTC 2012 Modified Files: src/doc: 3RDPARTY Log Message: tzcode2012a and and tzdata2012a have been released. We have updated to tzdata2012a but still have tzcode2011i. Add "Home Page: http://www.iana.org/time-zones

CVS commit: src/distrib/sets/lists/base

2012-03-01 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Mar 2 06:07:25 UTC 2012 Modified Files: src/distrib/sets/lists/base: mi Log Message: Add usr/share/zoneinfo/America/Creston to set lists, after tzdata2012a update. To generate a diff of this commit: cvs rdiff -u -r1.987 -r1.98

CVS commit: src/share/zoneinfo

2012-03-01 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Mar 2 07:01:50 UTC 2012 Update of /cvsroot/src/share/zoneinfo In directory ivanova.netbsd.org:/tmp/cvs-serv16297 Log Message: Import tzdata2012b from ftp://munnari.oz.au/pub/tzdata2012b.tar.gz. Changes since tzdata2012a: Most signi

CVS commit: src/doc

2012-03-01 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Mar 2 07:06:31 UTC 2012 Modified Files: src/doc: 3RDPARTY Log Message: tzcode2012b and tzdata2012b ahve been released. We have updated to tzdata2012b. To generate a diff of this commit: cvs rdiff -u -r1.920 -r1.921 src/doc/3RD

CVS commit: src/doc

2012-03-01 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Mar 2 07:21:49 UTC 2012 Modified Files: src/doc: CHANGES.prev Log Message: Mention tzdata2012a and tzdata2012b. 2012a has already been pulled up to netbsd-6 and 2012b will be pulled up soon. To generate a diff of this commit:

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

2012-03-02 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Mar 2 16:19:15 UTC 2012 Modified Files: src/common/lib/libc/string: memset2.c Log Message: Change CTASSERT to __CTASSERT (the spelling used in ), include so that it will be defined, and move it to a better place. The previous

CVS commit: src/usr.bin/pathchk

2010-11-09 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Nov 9 20:34:55 UTC 2010 Modified Files: src/usr.bin/pathchk: pathchk.1 Log Message: Change the ironically unafe "find . -print | xargs pathchk -p" to the safe "find . -exec pathchk -p \{\} +" in an example. To generate a diff

CVS commit: src/usr.bin/jot

2011-01-05 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed Jan 5 19:59:48 UTC 2011 Modified Files: src/usr.bin/jot: jot.1 Log Message: Add an example of generating a list of integers; make it the first example. Also add a reference to seq(1). To generate a diff of this commit: cvs rd

CVS commit: src/sbin/disklabel

2011-01-06 Thread Alan Barrett
Module Name:src Committed By: apb Date: Thu Jan 6 21:39:01 UTC 2011 Modified Files: src/sbin/disklabel: interact.c main.c printlabel.c Log Message: Change printf formats to match the data type of the values being printed. There's now a lot of PRIu16 and PRIu32, some PRIu

CVS commit: src/tools/compat

2011-01-10 Thread Alan Barrett
Module Name:src Committed By: apb Date: Mon Jan 10 20:38:35 UTC 2011 Modified Files: src/tools/compat: compat_defs.h Log Message: Define PRI[diouxX]8. We previously did this only for 16- and 32-bit type, but now PRIu8 is needed for tools/disklabel. Also define SCN[diouxX

CVS commit: src/share/misc

2013-05-07 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue May 7 14:55:37 UTC 2013 Modified Files: src/share/misc: bsd-family-tree Log Message: Add DragonFly 3.2.1, DragonFly 3.4.1, FreeBSD 9.1, OpenBSD 5.2, OpenBSD 5.3. Adapted from FreeBSD base/head/share/misc/bsd-family-tree (svn re

CVS commit: src/share/zoneinfo

2013-05-08 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed May 8 08:15:54 UTC 2013 Update of /cvsroot/src/share/zoneinfo In directory ivanova.netbsd.org:/tmp/cvs-serv7590 Log Message: Import tzdata2013c from ftp://ftp.iana.org/tz/releases/tzdata2013c.tar.gz Summary of changes from tzdata2013b

CVS commit: src/share/zoneinfo

2013-05-08 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed May 8 08:18:45 UTC 2013 Modified Files: src/share/zoneinfo: australasia Log Message: Merge tzdata2013c from ftp://ftp.iana.org/tz/releases/tzdata2013c.tar.gz Summary of changes from tzdata2013b to tzdata2013c: Changes affect

CVS commit: src/doc

2013-05-08 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed May 8 08:23:55 UTC 2013 Modified Files: src/doc: 3RDPARTY Log Message: tzcode2013c/tzdata2013c have been released. We have updated to tzdata2013c. To generate a diff of this commit: cvs rdiff -u -r1.1034 -r1.1035 src/doc/3RDPA

CVS commit: src/doc

2013-05-08 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed May 8 08:24:13 UTC 2013 Modified Files: src/doc: CHANGES Log Message: zoneinfo: Import tzdata2013c. [apb 20130508] To generate a diff of this commit: cvs rdiff -u -r1.1822 -r1.1823 src/doc/CHANGES Please note that diffs are n

CVS commit: src/share/misc

2013-05-23 Thread Alan Barrett
Module Name:src Committed By: apb Date: Thu May 23 21:08:13 UTC 2013 Modified Files: src/share/misc: bsd-family-tree Log Message: slight improvement in layout; no semantic change intended. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 src/share/misc/bsd-f

CVS commit: src/doc

2013-05-29 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed May 29 21:26:44 UTC 2013 Modified Files: src/doc: Makefile Log Message: Use TOOL_MANDOC_ASCII instead of TOOL_GROFF to format BUILDING.mdoc, and use TOOL_SED to flatten backspace sequences. To generate a diff of this commit: cv

CVS commit: src/usr.sbin/arp

2013-06-07 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Jun 7 18:33:53 UTC 2013 Modified Files: src/usr.sbin/arp: arp.8 Log Message: "temp", "pub", and "proxy" are keywords, not replaceable parameters, so do not use ".Ar" markup. Use either no markup, or ".Dq" markup, depending on c

CVS commit: src/share/misc

2013-06-11 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Jun 11 15:11:49 UTC 2013 Modified Files: src/share/misc: bsd-family-tree Log Message: Add FreeBSD-8.4 (merge with FreeBSD svn revision 251501). To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51 src/share/misc/bsd-fa

CVS commit: src/share/misc

2013-06-11 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Jun 11 15:15:29 UTC 2013 Modified Files: src/share/misc: bsd-family-tree Log Message: Fix tab damage in previous To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52 src/share/misc/bsd-family-tree Please note that dif

CVS import: src/share/zoneinfo

2013-07-07 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sun Jul 7 10:45:28 UTC 2013 Update of /cvsroot/src/share/zoneinfo In directory ivanova.netbsd.org:/tmp/cvs-serv14737 Log Message: Import tzdata2013d from ftp://ftp.iana.org/tz/releases/tzdata2013d.tar.gz Summary of changes from tzdata2013c

CVS commit: src/share/zoneinfo

2013-07-07 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sun Jul 7 10:48:49 UTC 2013 Modified Files: src/share/zoneinfo: australasia Log Message: Merge tzdata2013d. To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 src/share/zoneinfo/australasia Please note that diffs are n

CVS commit: src/doc

2013-07-07 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sun Jul 7 10:50:58 UTC 2013 Modified Files: src/doc: CHANGES Log Message: zoneinfo: Import tzdata2013d. [apb 20130707] To generate a diff of this commit: cvs rdiff -u -r1.1829 -r1.1830 src/doc/CHANGES Please note that diffs are n

CVS commit: src/doc

2013-07-07 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sun Jul 7 10:52:52 UTC 2013 Modified Files: src/doc: 3RDPARTY Log Message: tzcode2013d/tzdata2013d have been released. We have updated tzdata/ To generate a diff of this commit: cvs rdiff -u -r1.1039 -r1.1040 src/doc/3RDPARTY Pl

CVS commit: src/usr.sbin/arp

2013-07-07 Thread Alan Barrett
Module Name:src Committed By: apb Date: Mon Jul 8 04:31:12 UTC 2013 Modified Files: src/usr.sbin/arp: arp.8 Log Message: Use .Cm markup for the keywords "temp", "pub", and "proxy" (suggested by wiz). Also bump date. To generate a diff of this commit: cvs rdiff -u -r1.2

CVS commit: src/tools

2013-08-06 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Aug 6 21:47:01 UTC 2013 Modified Files: src/tools: Makefile.gnuhost src/tools/autoconf: Makefile Log Message: Add the "-g -D__gnu__" flags when invoking M4 via CONFIGURE_ARGS in tools/Makefile.gnuhost. This makes the to

CVS commit: src/tools/compat

2013-08-06 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Aug 6 21:50:19 UTC 2013 Modified Files: src/tools/compat: configure.ac Log Message: Add a configure test for snprintb_m. We will assume that the rpesence of snprintb_m implies the presence of snprintb. To generate a diff of t

CVS commit: src/tools/compat

2013-08-06 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Aug 6 21:56:36 UTC 2013 Modified Files: src/tools/compat: configure nbtool_config.h.in Log Message: regen, to pick up the test for snprintb_m. To generate a diff of this commit: cvs rdiff -u -r1.76 -r1.77 src/tools/compat/conf

CVS commit: src/tools/compat

2013-08-06 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Aug 6 21:58:46 UTC 2013 Modified Files: src/tools/compat: compat_defs.h Log Message: declare snptintb_m() and snprintb() if HAVE_SNPRINTB is not defined. To generate a diff of this commit: cvs rdiff -u -r1.90 -r1.91 src/tools/

CVS commit: src/common/lib/libutil

2013-08-06 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Aug 6 22:02:50 UTC 2013 Modified Files: src/common/lib/libutil: snprintb.c Log Message: If HAVE_SNPRINTB_M is defined, then do not define the snprintb() and snprintb_m() functions. This should allow this file to be compiled fro

CVS commit: src/tools/compat

2013-08-06 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Aug 6 22:04:25 UTC 2013 Modified Files: src/tools/compat: Makefile Log Message: Compile snprintb.c into libnbcompat. The source file is found in the common/lib/libutil directory. To generate a diff of this commit: cvs rdiff -

CVS commit: src/tools

2013-08-07 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed Aug 7 17:50:55 UTC 2013 Modified Files: src/tools: Makefile.gnuhost src/tools/autoconf: Makefile Log Message: Revert previous change to tools/Makefile.gnuhost. When getenv("M4") contains multiple words, flex fails. Adj

CVS commit: src/usr.bin/make

2013-08-11 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sun Aug 11 09:53:49 UTC 2013 Modified Files: src/usr.bin/make: make.1 Log Message: Use Va markup to show that the "suffix" part of ".PATH.suffix" is a placeholder, not a literal string. Also bump date. To generate a diff of this co

CVS commit: src/share/zoneinfo

2013-09-20 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Sep 20 20:46:01 UTC 2013 Modified Files: src/share/zoneinfo: australasia Log Message: Merge the Fiji-related change from tzdata2013e. This is the only urgent change in tzdata2013e. This year Fiji will start DST on October 27

CVS commit: src/lib/libc/sys

2013-09-22 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sun Sep 22 10:02:05 UTC 2013 Modified Files: src/lib/libc/sys: fsync.2 Log Message: Attempt to clarify that fsync() is like fsync_range() with the FFILESYNC flag but not the FDISKSYNC flag. Add a paragraph of weasel words about how

CVS commit: src/sys/kern

2013-10-02 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed Oct 2 21:38:55 UTC 2013 Modified Files: src/sys/kern: init_main.c Log Message: Add "/rescue/init" to the end of the initpaths list, which now contains: { "/sbin/init", "/sbin/oinit", "/sbin/init.bak", "/rescue/init", NULL }. XX

CVS commit: src/sbin/init

2013-10-02 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed Oct 2 22:01:47 UTC 2013 Modified Files: src/sbin/init: init.8 Log Message: Document that the kernel may try several paths for init. XXX: This should be in the kernel documentation, not in the init(8) man page. To generate a d

CVS commit: src/sbin/init

2013-10-02 Thread Alan Barrett
Module Name:src Committed By: apb Date: Wed Oct 2 22:07:56 UTC 2013 Modified Files: src/sbin/init: init.8 Log Message: The "-s" flag is passed to init by the kernel, not by the boot loader. To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 src/sbin/init/init

CVS commit: src/sbin/fdisk

2013-10-06 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sun Oct 6 12:27:15 UTC 2013 Modified Files: src/sbin/fdisk: fdisk.8 Log Message: Suggest using -b 1023/255/63 for modern disks where the BIOS is configured to use LBA-Assisted translation. To generate a diff of this commit: cvs rd

CVS commit: src/external/gpl3/gdb/dist/bfd

2013-10-15 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Oct 15 07:14:59 UTC 2013 Modified Files: src/external/gpl3/gdb/dist/bfd: configure Log Message: If the shell does not support the $LINENO variable, then use "bfd_configure.lineno" instead of "configure.lineno" as the name of the

CVS commit: src/external/gpl3/gdb/dist/opcodes

2013-10-15 Thread Alan Barrett
Module Name:src Committed By: apb Date: Tue Oct 15 07:18:18 UTC 2013 Modified Files: src/external/gpl3/gdb/dist/opcodes: configure Log Message: Run ../bfd/configure under ${CONFIG_SHELL}, not under the /bin/sh that happens to be mentioned in its "#!" line. To generate a

CVS commit: src/sys/dev/isa

2013-10-18 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Oct 18 08:09:37 UTC 2013 Modified Files: src/sys/dev/isa: if_eg.c Log Message: Delete unused function static inline void egprintstat(u_char); To generate a diff of this commit: cvs rdiff -u -r1.85 -r1.86 src/sys/dev/isa/if_eg.c

CVS commit: src/sys/dev/usb

2013-10-18 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Oct 18 08:25:49 UTC 2013 Modified Files: src/sys/dev/usb: xhci.c Log Message: Don't refer to uninitialised variable 'v' in case C(UR_GET_DESCRIPTOR, UT_READ_CLASS_DEVICE) in xhci_root_ctrl_start(). This code was apparently pasted

CVS commit: src/sys/dev/usb

2013-10-18 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Oct 18 08:39:22 UTC 2013 Modified Files: src/sys/dev/usb: xhci.c Log Message: Wrap several unused static inline functions with #if 0. I didn't delete them because I suspect that they might be needed later. To generate a diff of

CVS commit: src/external/gpl3/gcc/dist/gcc

2013-10-18 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Oct 18 13:24:40 UTC 2013 Modified Files: src/external/gpl3/gcc/dist/gcc: output.h Log Message: When building gcc using clang, avoid trying to use __attribute__((__format__(__asm_fprintf__, ...))) because clang doesn't support tha

CVS commit: xsrc/external/mit/xdm/dist/xdm

2013-10-18 Thread Alan Barrett
Module Name:xsrc Committed By: apb Date: Fri Oct 18 15:59:38 UTC 2013 Modified Files: xsrc/external/mit/xdm/dist/xdm: dm.c Log Message: Print time_t values by casting to intmax_t and using "%ji" format. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 xsrc/ext

CVS commit: xsrc/external/mit/xdm/dist/xdm

2013-10-18 Thread Alan Barrett
Module Name:xsrc Committed By: apb Date: Fri Oct 18 16:31:40 UTC 2013 Modified Files: xsrc/external/mit/xdm/dist/xdm: xdmauth.c Log Message: The result from strlen() has type size_t, so print it with "%zd" format. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1

CVS commit: xsrc/external/mit/xf86-video-wsfb/dist/src

2013-10-18 Thread Alan Barrett
Module Name:xsrc Committed By: apb Date: Fri Oct 18 16:58:50 UTC 2013 Modified Files: xsrc/external/mit/xf86-video-wsfb/dist/src: wsfb_driver.c Log Message: CARD32 might be unsigned int or unsigned long, depending on platform, so cast to unsigned int when printing. To ge

CVS commit: xsrc/external/mit/xdm/dist/xdm

2013-10-18 Thread Alan Barrett
Module Name:xsrc Committed By: apb Date: Fri Oct 18 17:33:18 UTC 2013 Modified Files: xsrc/external/mit/xdm/dist/xdm: xdmauth.c Log Message: Fix error in previous. strlen's result is unsigned, so the correct format is "%zu". To generate a diff of this commit: cvs rdiff

CVS commit: src/tools/compat

2013-10-24 Thread Alan Barrett
Module Name:src Committed By: apb Date: Thu Oct 24 13:59:47 UTC 2013 Modified Files: src/tools/compat: compat_defs.h Log Message: Define __USE for use during a tools build. To generate a diff of this commit: cvs rdiff -u -r1.92 -r1.93 src/tools/compat/compat_defs.h Plea

CVS commit: src/usr.sbin/makefs

2013-10-24 Thread Alan Barrett
Module Name:src Committed By: apb Date: Thu Oct 24 14:01:01 UTC 2013 Modified Files: src/usr.sbin/makefs: cd9660.c Log Message: Now that tools/compat/compat_defs.h defones __USE, there's no need to treat the tools build as a special case. To generate a diff of this commi

CVS commit: src/sys/sys

2013-10-25 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Oct 25 08:47:30 UTC 2013 Modified Files: src/sys/sys: cdefs.h Log Message: Add comments explaining what __unused and __used are for. To generate a diff of this commit: cvs rdiff -u -r1.113 -r1.114 src/sys/sys/cdefs.h Please no

CVS commit: src/sys/sys

2013-10-25 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Oct 25 08:51:55 UTC 2013 Modified Files: src/sys/sys: cdefs.h Log Message: Add __diagused and __debugused. These are for marking variables that are used only in diagnotic or debug code, but unused when NDEBUG is defined, or DIAG

CVS commit: src/share/mk

2013-10-25 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Oct 25 10:45:01 UTC 2013 Modified Files: src/share/mk: bsd.man.mk Log Message: Recognise .3lua and .9lua as man page extensions. Source files like foo.3lua will result in installed files like /usr/share/man/man3lua/foo.3lua, /us

CVS commit: src/share/man/man3

2013-10-25 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Oct 25 14:41:08 UTC 2013 Modified Files: src/share/man/man3: attribute.3 Log Message: Try to make this more compiler-neutral, and give both GCC and LLVM/Clang as examples. To generate a diff of this commit: cvs rdiff -u -r1.11

CVS commit: src/share/man/man3

2013-10-25 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Oct 25 14:46:59 UTC 2013 Modified Files: src/share/man/man3: attribute.3 Log Message: Document __diagused and __debugused To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/share/man/man3/attribute.3 Please note

CVS commit: src/sys/sys

2013-10-25 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Oct 25 14:54:25 UTC 2013 Modified Files: src/sys/sys: cdefs.h Log Message: Now that these attributes are documented in attribute(3), shorten the comments for __used, __unused, __diagused, and __debugused. Also s/variable/item/ be

CVS commit: src/share/man/man3

2013-10-25 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Oct 25 15:11:21 UTC 2013 Modified Files: src/share/man/man3: attribute.3 Log Message: Use markup in the descriptions of __diagused and __debugused. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/share/man/man

CVS commit: src/usr.bin/make

2013-10-25 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Oct 25 20:57:03 UTC 2013 Modified Files: src/usr.bin/make: make.1 Log Message: The :C/// modifier takes an extendedregular expression. To generate a diff of this commit: cvs rdiff -u -r1.222 -r1.223 src/usr.bin/make/make.1 Ple

CVS commit: src/usr.bin/make

2013-10-25 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Oct 25 22:05:00 UTC 2013 Modified Files: src/usr.bin/make: make.1 Log Message: Explain that ${VAR:M*} will normalise the inter-word spacing. To generate a diff of this commit: cvs rdiff -u -r1.223 -r1.224 src/usr.bin/make/make.

CVS commit: src/share/mk

2013-10-25 Thread Alan Barrett
Module Name:src Committed By: apb Date: Fri Oct 25 22:16:29 UTC 2013 Modified Files: src/share/mk: bsd.man.mk Log Message: Rename _MNUMBERS to _MSECTIONS. The manual section identifiers are not just numbers any more. Also introduce a new variable, _MSECTIONREGEX, as a re

CVS commit: src/distrib/sets/lists

2013-10-27 Thread Alan Barrett
Module Name:src Committed By: apb Date: Sun Oct 27 09:27:23 UTC 2013 Modified Files: src/distrib/sets/lists/base: ad.arm ad.mips md.amd64 md.sparc64 mi shl.mi src/distrib/sets/lists/comp: md.amd64 mi shl.mi src/distrib/sets/lists/debug: mi

<    1   2   3   4   5   6   7   >