CVS commit: othersrc/external/bsd/bag

2011-08-03 Thread Alistair G. Crooks
Module Name:othersrc
Committed By:   agc
Date:   Thu Aug  4 06:32:29 UTC 2011

Update of /cvsroot/othersrc/external/bsd/bag
In directory ivanova.netbsd.org:/tmp/cvs-serv20549

Log Message:
initial import of bag into the othersrc repository

bag is a layer on top of libmat(3), the minimalist archiver library
and tool.  mat provides the basic endian-independent library functions
to create embedded checksum protected archives.

on top of that, libbag(3) adds a digital signature (via libnetpgp) of
the mat archive (and its embedded digests) as a digitally-signed
inventory file, and creates a new "outer" mat archive containing the
inner archive and the signed inventory, xz compresses the result, and
then uses libcirca encoding to protect the outer archive against data
corruption.

the net effect is an archive which uses a signature to protect against
data integrity challenges, and circa protection (two reed-solomon
encodings and data spreading) to protect against data corruption at
rest or in transit.

bag provides bag(1) and libbag(3) functionality, and is 2-clause
bsd-licensed.

Status:

Vendor Tag: CROOKS
Release Tags:   bag-base

N othersrc/external/bsd/bag/Makefile
N othersrc/external/bsd/bag/bag/Makefile
N othersrc/external/bsd/bag/dist/Makefile
N othersrc/external/bsd/bag/dist/bag.1
N othersrc/external/bsd/bag/dist/bag.c
N othersrc/external/bsd/bag/dist/bag.h
N othersrc/external/bsd/bag/dist/libbag.3
N othersrc/external/bsd/bag/dist/main.c
N othersrc/external/bsd/bag/libbag/shlib_version
N othersrc/external/bsd/bag/libbag/Makefile

No conflicts created by this import



CVS commit: src/usr.bin/mkubootimage

2011-08-03 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Thu Aug  4 04:47:59 UTC 2011

Modified Files:
src/usr.bin/mkubootimage: mkubootimage.c

Log Message:
Add O_TRUNC to the open of the image file (in case the size decreases).


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/usr.bin/mkubootimage/mkubootimage.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2011-08-03 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Thu Aug  4 03:48:12 UTC 2011

Modified Files:
src: UPDATING

Log Message:
Note changes to xz require cleaning of a directory by hand.


To generate a diff of this commit:
cvs rdiff -u -r1.224 -r1.225 src/UPDATING

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib/sets/lists

2011-08-03 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Thu Aug  4 03:38:57 UTC 2011

Modified Files:
src/distrib/sets/lists/base: mi
src/distrib/sets/lists/comp: mi
src/distrib/sets/lists/man: mi

Log Message:
Add new xz program links and man pages.


To generate a diff of this commit:
cvs rdiff -u -r1.945 -r1.946 src/distrib/sets/lists/base/mi
cvs rdiff -u -r1.1653 -r1.1654 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.1326 -r1.1327 src/distrib/sets/lists/man/mi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/public-domain/xz/bin

2011-08-03 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Thu Aug  4 03:38:06 UTC 2011

Modified Files:
src/external/public-domain/xz/bin: Makefile
Added Files:
src/external/public-domain/xz/bin: Makefile.inc
src/external/public-domain/xz/bin/lzmainfo: Makefile
src/external/public-domain/xz/bin/xz: Makefile

Log Message:
Build lzmainfo
Add links to xz (lzma, unxz, etc) that are in the manpage.
Add manpage links as well.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/public-domain/xz/bin/Makefile
cvs rdiff -u -r0 -r1.1 src/external/public-domain/xz/bin/Makefile.inc
cvs rdiff -u -r0 -r1.1 src/external/public-domain/xz/bin/lzmainfo/Makefile
cvs rdiff -u -r0 -r1.1 src/external/public-domain/xz/bin/xz/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/lib/libkern/arch/sh3

2011-08-03 Thread Valeriy E. Ushakov
Module Name:src
Committed By:   uwe
Date:   Thu Aug  4 03:20:10 UTC 2011

Modified Files:
src/sys/lib/libkern/arch/sh3: Makefile.inc
Added Files:
src/sys/lib/libkern/arch/sh3: sdivsi3_i4i.S udivsi3_i4i.S

Log Message:
For unsignad integer division gcc used to emit a call to __udivsi3
"millicode" function that uses compiler-private ABI.  Newer gcc uses
heavily tuned __udivsi3_i4i that is NOT compatible with __udivsi3
because it's expected to clobber different registers.  We don't want
to link the kernel against libgcc and we don't have resources to write
heavily tuned version ourselves, so clone __udivsi3 but adjust it to
conform to the __udivsi3_i4i clobber spec.

Ditto for signed division.

You can make gcc use old routines with -mdiv=call-div1 to avoid few
extra instructions to save/restore the right registers in the signed
division funcion.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/lib/libkern/arch/sh3/Makefile.inc
cvs rdiff -u -r0 -r1.1 src/sys/lib/libkern/arch/sh3/sdivsi3_i4i.S \
src/sys/lib/libkern/arch/sh3/udivsi3_i4i.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/tools/binutils

2011-08-03 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Thu Aug  4 02:38:41 UTC 2011

Modified Files:
src/tools/binutils: Makefile

Log Message:
add --disable-werror.  GCC 4.6 doesn't like some of the code here and
rather than patching code to fix it (and one case isn't trivially fixable)
simply turn off -Werror by default here.  should fix PR#45140.


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/tools/binutils/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2011-08-03 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Thu Aug  4 02:33:00 UTC 2011

Modified Files:
src/sys/dev/pci: pcidevs.h pcidevs_data.h

Log Message:
regen


To generate a diff of this commit:
cvs rdiff -u -r1.1084 -r1.1085 src/sys/dev/pci/pcidevs.h
cvs rdiff -u -r1.1083 -r1.1084 src/sys/dev/pci/pcidevs_data.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2011-08-03 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Thu Aug  4 02:31:37 UTC 2011

Modified Files:
src/sys/dev/pci: pcidevs

Log Message:
Add Conexant CX23885


To generate a diff of this commit:
cvs rdiff -u -r1.1088 -r1.1089 src/sys/dev/pci/pcidevs

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/i2c

2011-08-03 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Thu Aug  4 01:48:34 UTC 2011

Modified Files:
src/sys/dev/i2c: files.i2c
Added Files:
src/sys/dev/i2c: cx24227.c cx24227var.h

Log Message:
Add Conexant/Samsung CX24227/S5H1409 demodulator subroutines.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/sys/dev/i2c/cx24227.c src/sys/dev/i2c/cx24227var.h
cvs rdiff -u -r1.39 -r1.40 src/sys/dev/i2c/files.i2c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/i2c

2011-08-03 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Thu Aug  4 01:45:38 UTC 2011

Modified Files:
src/sys/dev/i2c: files.i2c
Added Files:
src/sys/dev/i2c: mt2131.c mt2131var.h

Log Message:
Add subroutines to support Microtune MT2131 silicon tuner.


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/sys/dev/i2c/files.i2c
cvs rdiff -u -r0 -r1.1 src/sys/dev/i2c/mt2131.c src/sys/dev/i2c/mt2131var.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



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

2011-08-03 Thread Michael Lorenz
Module Name:xsrc
Committed By:   macallan
Date:   Thu Aug  4 01:17:34 UTC 2011

Modified Files:
xsrc/external/mit/xf86-video-mach64/dist/src: atipreinit.c

Log Message:
support ioctl(WSDISPLAYIO_GET_EDID)


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.4 -r1.2 \
xsrc/external/mit/xf86-video-mach64/dist/src/atipreinit.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2011-08-03 Thread Jonathan A. Kollasch
Module Name:src
Committed By:   jakllsch
Date:   Thu Aug  4 00:57:33 UTC 2011

Modified Files:
src/sys/dev/pci: machfb.c

Log Message:
Fix machfb build on ports not based on powerpc or sparc.


To generate a diff of this commit:
cvs rdiff -u -r1.70 -r1.71 src/sys/dev/pci/machfb.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2011-08-03 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Thu Aug  4 00:52:50 UTC 2011

Modified Files:
src/doc: CHANGES
src/share/mk: bsd.own.mk

Log Message:
switch sparc64 to GCC 4.5.3.


To generate a diff of this commit:
cvs rdiff -u -r1.1585 -r1.1586 src/doc/CHANGES
cvs rdiff -u -r1.675 -r1.676 src/share/mk/bsd.own.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/evbppc/conf

2011-08-03 Thread Havard Eidnes
Module Name:src
Committed By:   he
Date:   Wed Aug  3 22:19:31 UTC 2011

Modified Files:
src/sys/arch/evbppc/conf: EV64260

Log Message:
Bump SYMTAB_SPACE so that the contents fits again.


To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/sys/arch/evbppc/conf/EV64260

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man4

2011-08-03 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Wed Aug  3 21:16:04 UTC 2011

Modified Files:
src/share/man/man4: urndis.4

Log Message:
Re-add intro(4) removed by accident.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/share/man/man4/urndis.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/mit/xorg/lib/pixman

2011-08-03 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Wed Aug  3 18:22:29 UTC 2011

Modified Files:
src/external/mit/xorg/lib/pixman: Makefile

Log Message:
include pixman-noop.c.  oops.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/external/mit/xorg/lib/pixman/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2011-08-03 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Wed Aug  3 18:04:46 UTC 2011

Modified Files:
src/doc: 3RDPARTY

Log Message:
mdocml-1.11.5 out.


To generate a diff of this commit:
cvs rdiff -u -r1.856 -r1.857 src/doc/3RDPARTY

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/binutils/dist/gas/config

2011-08-03 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Wed Aug  3 17:54:52 UTC 2011

Modified Files:
src/external/gpl3/binutils/dist/gas/config: tc-mips.h

Log Message:
Missing a diff for the loongson2 fixes


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/external/gpl3/binutils/dist/gas/config/tc-mips.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.bin/mkubootimage

2011-08-03 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Wed Aug  3 17:46:40 UTC 2011

Modified Files:
src/usr.bin/mkubootimage: mkubootimage.c uboot.h

Log Message:
Add lzma and lzo compression types


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/usr.bin/mkubootimage/mkubootimage.c
cvs rdiff -u -r1.3 -r1.4 src/usr.bin/mkubootimage/uboot.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch

2011-08-03 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Wed Aug  3 17:34:28 UTC 2011

Modified Files:
src/sys/arch/evbmips/rasoc: machdep.c
src/sys/arch/mips/ralink: ralink_eth.c

Log Message:
Deal with RTMEMSIZE no longer being defined


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/evbmips/rasoc/machdep.c
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/mips/ralink/ralink_eth.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.bin/mkubootimage

2011-08-03 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Wed Aug  3 17:00:13 UTC 2011

Modified Files:
src/usr.bin/mkubootimage: mkubootimage.c

Log Message:
Add -E entrypoint for "byteswapped" entry-points.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/usr.bin/mkubootimage/mkubootimage.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/mips/ralink

2011-08-03 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Wed Aug  3 16:27:15 UTC 2011

Modified Files:
src/sys/arch/mips/ralink: ralink_reg.h

Log Message:
Add some defintions for SYSCTL_CFG0


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/mips/ralink/ralink_reg.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/mips/ralink

2011-08-03 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Wed Aug  3 16:26:53 UTC 2011

Modified Files:
src/sys/arch/mips/ralink: ralink_var.h

Log Message:
Deal with RA_CONSOLE_EARLY a little more sanely


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/mips/ralink/ralink_var.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/evbmips/conf

2011-08-03 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Wed Aug  3 16:26:05 UTC 2011

Modified Files:
src/sys/arch/evbmips/conf: CPMBR1400

Log Message:
No need to specify MEMSIZE since we read it from SYSCTL_CFG0.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/evbmips/conf/CPMBR1400

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/evbmips/rasoc

2011-08-03 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Wed Aug  3 16:25:03 UTC 2011

Modified Files:
src/sys/arch/evbmips/rasoc: machdep.c

Log Message:
Get memsize from SYSCTL_CFG0 register.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbmips/rasoc/machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/fs/v7fs

2011-08-03 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Wed Aug  3 16:21:52 UTC 2011

Modified Files:
src/sys/fs/v7fs: v7fs_io_user.c

Log Message:
Insert casts to off_t to avoid 32-bit multiplication overflow when
computing device offsets on 32-bit platforms. Should fix PR 45191.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/fs/v7fs/v7fs_io_user.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/bin/cp

2011-08-03 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Wed Aug  3 15:44:15 UTC 2011

Modified Files:
src/bin/cp: cp.1

Log Message:
Adjust wording of previous and fix a couple grammar slipups/typos.


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/bin/cp/cp.1

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/raidframe

2011-08-03 Thread Greg Oster
Module Name:src
Committed By:   oster
Date:   Wed Aug  3 15:00:29 UTC 2011

Modified Files:
src/sys/dev/raidframe: rf_reconstruct.c

Log Message:
Address part of PR kern/44972.  From YAMAMOTO Takashi.  Thanks!


To generate a diff of this commit:
cvs rdiff -u -r1.115 -r1.116 src/sys/dev/raidframe/rf_reconstruct.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.sbin/installboot

2011-08-03 Thread Greg Troxel
Module Name:src
Committed By:   gdt
Date:   Wed Aug  3 14:47:28 UTC 2011

Modified Files:
src/usr.sbin/installboot: installboot.8

Log Message:
Explain how to use -e -v without -o to see the current options.
Caution that installing a new primary bootstrap will reset options to
default values.


To generate a diff of this commit:
cvs rdiff -u -r1.76 -r1.77 src/usr.sbin/installboot/installboot.8

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/raidframe

2011-08-03 Thread Greg Oster
Module Name:src
Committed By:   oster
Date:   Wed Aug  3 14:44:39 UTC 2011

Modified Files:
src/sys/dev/raidframe: rf_copyback.c rf_disks.c rf_kintf.h
rf_netbsdkintf.c

Log Message:
Remove unused 'struct lwp *' from rf_getdisksize.  No functional changes.


To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 src/sys/dev/raidframe/rf_copyback.c
cvs rdiff -u -r1.80 -r1.81 src/sys/dev/raidframe/rf_disks.c
cvs rdiff -u -r1.22 -r1.23 src/sys/dev/raidframe/rf_kintf.h
cvs rdiff -u -r1.293 -r1.294 src/sys/dev/raidframe/rf_netbsdkintf.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2011-08-03 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Wed Aug  3 14:13:08 UTC 2011

Modified Files:
src/distrib/sets/lists/comp: mi
src/lib/libm: Makefile
src/lib/libm/man: ieee_test.3
src/lib/libm/src: s_logb.c
Added Files:
src/lib/libm/arch/i387: s_logbl.S
src/lib/libm/src: s_logbl.c

Log Message:
Add logbl(3).


To generate a diff of this commit:
cvs rdiff -u -r1.1652 -r1.1653 src/distrib/sets/lists/comp/mi
cvs rdiff -u -r1.115 -r1.116 src/lib/libm/Makefile
cvs rdiff -u -r0 -r1.1 src/lib/libm/arch/i387/s_logbl.S
cvs rdiff -u -r1.10 -r1.11 src/lib/libm/man/ieee_test.3
cvs rdiff -u -r1.11 -r1.12 src/lib/libm/src/s_logb.c
cvs rdiff -u -r0 -r1.1 src/lib/libm/src/s_logbl.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/bin/cp

2011-08-03 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Wed Aug  3 14:02:59 UTC 2011

Modified Files:
src/bin/cp: cp.1

Log Message:
New sentence, new line. Remove trailing whitespace. Bump date for previous.


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/bin/cp/cp.1

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib/arc/ramdisk

2011-08-03 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Wed Aug  3 13:59:15 UTC 2011

Modified Files:
src/distrib/arc/ramdisk: list

Log Message:
less is no more


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/distrib/arc/ramdisk/list

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/bin/cp

2011-08-03 Thread Emmanuel Dreyfus
Module Name:src
Committed By:   manu
Date:   Wed Aug  3 12:55:03 UTC 2011

Modified Files:
src/bin/cp: cp.1

Log Message:
iExplain what happens to extended attriutes when -p is used.


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/bin/cp/cp.1

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2011-08-03 Thread Juergen Hannken-Illjes
Module Name:src
Committed By:   hannken
Date:   Wed Aug  3 10:03:52 UTC 2011

Modified Files:
src/sys/ufs/ufs: ufs_vnops.c
src/tests/fs/vfs: t_union.c

Log Message:
Make whiteouts work on journaling ffs file system by adding the missing
UFS_WAPBL_BEGIN() / UFS_WAPBL_END() around CREATE and DELETE ops.

Fixes PR #44377 (union whiteouts don't work on ffs -o log)


To generate a diff of this commit:
cvs rdiff -u -r1.201 -r1.202 src/sys/ufs/ufs/ufs_vnops.c
cvs rdiff -u -r1.5 -r1.6 src/tests/fs/vfs/t_union.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/lib/libc/sys

2011-08-03 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Wed Aug  3 09:48:12 UTC 2011

Modified Files:
src/lib/libc/sys: extattr_get_file.2

Log Message:
Bump date for previous. Remove trailing whitespace.
Sort error descriptions.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/lib/libc/sys/extattr_get_file.2

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.