CVS commit: src/sys/ufs/ffs

2014-07-09 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Thu Jul 10 06:27:15 UTC 2014

Modified Files:
src/sys/ufs/ffs: ffs_wapbl.c

Log Message:
Fix unchecked UFS_WAPBL_BEGIN. Coverity 975226.
Unfortunately it looks like all we can do on error here is printf.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/ufs/ffs/ffs_wapbl.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/sparc64

2014-07-09 Thread Julian Coleman
Module Name:src
Committed By:   jdc
Date:   Thu Jul 10 06:24:02 UTC 2014

Modified Files:
src/sys/arch/sparc64/include: param.h
src/sys/arch/sparc64/sparc64: pmap.c

Log Message:
Increase maximum MSGBUFSIZE to 248k.
While here, remove 2 sparc(32)-only entries (from mrg@).


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 src/sys/arch/sparc64/include/param.h
cvs rdiff -u -r1.288 -r1.289 src/sys/arch/sparc64/sparc64/pmap.c

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



CVS commit: src/sys/ufs/ffs

2014-07-09 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Thu Jul 10 06:02:40 UTC 2014

Modified Files:
src/sys/ufs/ffs: ffs_snapshot.c

Log Message:
Use an explicit compare to 0 for an immediate error result, not !.
Using ! is perfectly clear on variables like "error" or "result",
but directly on a function call it tends to look like a mistake.


To generate a diff of this commit:
cvs rdiff -u -r1.135 -r1.136 src/sys/ufs/ffs/ffs_snapshot.c

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



CVS commit: xsrc/external/mit/MesaLib/dist/src/glsl

2014-07-09 Thread Taylor R Campbell
Module Name:xsrc
Committed By:   riastradh
Date:   Thu Jul 10 01:14:23 UTC 2014

Added Files:
xsrc/external/mit/MesaLib/dist/src/glsl: builtin_function.cpp

Log Message:
Add pre-generated builtin_function.cpp.

Normally this is created by the Mesa build process by running a
Python program, but we don't have that vice^Wluxury here, so we'll
make do with a pre-generated version.  This file is going away in a
later Mesa version anyway...


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 \
xsrc/external/mit/MesaLib/dist/src/glsl/builtin_function.cpp

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



CVS commit: src/lib/librumpuser

2014-07-09 Thread Justin Cormack
Module Name:src
Committed By:   justin
Date:   Wed Jul  9 23:41:40 UTC 2014

Modified Files:
src/lib/librumpuser: Makefile rumpuser.c
Added Files:
src/lib/librumpuser: rumpuser_file.c rumpuser_mem.c

Log Message:
Split out file and memory access in librumpuser

This allows alternate implementations to reuse these parts, and the file
parts will at the next hypercall revision be moved to their own driver.

Discussed with pooka@


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/lib/librumpuser/Makefile
cvs rdiff -u -r1.59 -r1.60 src/lib/librumpuser/rumpuser.c
cvs rdiff -u -r0 -r1.1 src/lib/librumpuser/rumpuser_file.c \
src/lib/librumpuser/rumpuser_mem.c

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-intel/dist/src/sna

2014-07-09 Thread Taylor R Campbell
Module Name:xsrc
Committed By:   riastradh
Date:   Wed Jul  9 22:07:02 UTC 2014

Modified Files:
xsrc/external/mit/xf86-video-intel/dist/src/sna: sna_dri.c

Log Message:
Revert stop-gap in 1.2 now that Mesa is updated.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
xsrc/external/mit/xf86-video-intel/dist/src/sna/sna_dri.c

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

2014-07-09 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Wed Jul  9 20:22:56 UTC 2014

Modified Files:
src/external/mit/xorg/lib/dri: dri.mk
src/external/mit/xorg/lib/dri/i915: Makefile
src/external/mit/xorg/lib/dri/i965: Makefile
src/external/mit/xorg/lib/dri/libmesa: Makefile
src/external/mit/xorg/lib/dri/r128: Makefile
src/external/mit/xorg/lib/dri/r200: Makefile
src/external/mit/xorg/lib/dri/r300: Makefile
src/external/mit/xorg/lib/dri/r600: Makefile
src/external/mit/xorg/lib/dri/radeon: Makefile
src/external/mit/xorg/lib/dri/s3v: Makefile
src/external/mit/xorg/lib/dri/swrast: Makefile
src/external/mit/xorg/lib/dri/tdfx: Makefile
src/external/mit/xorg/lib/libGL: Makefile
src/external/mit/xorg/lib/libOSMesa: Makefile libmesa.mk
src/external/mit/xorg/lib/libdrm_radeon: Makefile
src/external/mit/xorg/tools: Makefile
src/external/mit/xorg/tools/glsl: Makefile.glslsrcs

Log Message:
Update reachover makefiles for MesaLib 7.11.2.

With the new GL shader compiler, glsl-compile is no longer needed as
a tool, but the shader compiler is now duplicated in several
libraries, so (XXX) external/mit/xorg/tools/glsl should be turned
into a proper library that libGL and libmesa can link against.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/external/mit/xorg/lib/dri/dri.mk
cvs rdiff -u -r1.11 -r1.12 src/external/mit/xorg/lib/dri/i915/Makefile
cvs rdiff -u -r1.14 -r1.15 src/external/mit/xorg/lib/dri/i965/Makefile
cvs rdiff -u -r1.11 -r1.12 src/external/mit/xorg/lib/dri/libmesa/Makefile
cvs rdiff -u -r1.4 -r1.5 src/external/mit/xorg/lib/dri/r128/Makefile
cvs rdiff -u -r1.8 -r1.9 src/external/mit/xorg/lib/dri/r200/Makefile
cvs rdiff -u -r1.8 -r1.9 src/external/mit/xorg/lib/dri/r300/Makefile
cvs rdiff -u -r1.4 -r1.5 src/external/mit/xorg/lib/dri/r600/Makefile
cvs rdiff -u -r1.8 -r1.9 src/external/mit/xorg/lib/dri/radeon/Makefile
cvs rdiff -u -r1.3 -r1.4 src/external/mit/xorg/lib/dri/s3v/Makefile
cvs rdiff -u -r1.1 -r1.2 src/external/mit/xorg/lib/dri/swrast/Makefile
cvs rdiff -u -r1.4 -r1.5 src/external/mit/xorg/lib/dri/tdfx/Makefile
cvs rdiff -u -r1.18 -r1.19 src/external/mit/xorg/lib/libGL/Makefile
cvs rdiff -u -r1.7 -r1.8 src/external/mit/xorg/lib/libOSMesa/Makefile \
src/external/mit/xorg/lib/libOSMesa/libmesa.mk
cvs rdiff -u -r1.5 -r1.6 src/external/mit/xorg/lib/libdrm_radeon/Makefile
cvs rdiff -u -r1.3 -r1.4 src/external/mit/xorg/tools/Makefile
cvs rdiff -u -r1.1 -r1.2 src/external/mit/xorg/tools/glsl/Makefile.glslsrcs

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



CVS commit: xsrc/external/mit/MesaLib/dist/src

2014-07-09 Thread Taylor R Campbell
Module Name:xsrc
Committed By:   riastradh
Date:   Wed Jul  9 20:14:17 UTC 2014

Modified Files:
xsrc/external/mit/MesaLib/dist/src/glsl: ralloc.c
xsrc/external/mit/MesaLib/dist/src/mesa/main: context.c

Log Message:
Use __attribute__((__destructor__)), not atexit, in shared objects.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 xsrc/external/mit/MesaLib/dist/src/glsl/ralloc.c
cvs rdiff -u -r1.1.1.6 -r1.2 \
xsrc/external/mit/MesaLib/dist/src/mesa/main/context.c

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



CVS commit: xsrc/external/mit/MesaLib/dist/src/mesa/main

2014-07-09 Thread Taylor R Campbell
Module Name:xsrc
Committed By:   riastradh
Date:   Wed Jul  9 20:12:30 UTC 2014

Modified Files:
xsrc/external/mit/MesaLib/dist/src/mesa/main: compiler.h

Log Message:
Define CPU_TO_LE16/LE16_TO_CPU consistently in main/compiler.h.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.3 -r1.2 \
xsrc/external/mit/MesaLib/dist/src/mesa/main/compiler.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/MesaLib/dist/src/mesa/main

2014-07-09 Thread Taylor R Campbell
Module Name:xsrc
Committed By:   riastradh
Date:   Wed Jul  9 20:11:14 UTC 2014

Modified Files:
xsrc/external/mit/MesaLib/dist/src/mesa/main: mipmap.c

Log Message:
Fix types and omit needless casts in mesa/main/mipmap.c.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.5 -r1.2 \
xsrc/external/mit/MesaLib/dist/src/mesa/main/mipmap.c

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



CVS commit: xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/intel

2014-07-09 Thread Taylor R Campbell
Module Name:xsrc
Committed By:   riastradh
Date:   Wed Jul  9 20:04:12 UTC 2014

Modified Files:
xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/intel:
intel_batchbuffer.h

Log Message:
Declare intel_emit_depth_stall_flushes in intel_batchbuffer.h.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.4 -r1.2 \

xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/intel/intel_batchbuffer.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/MesaLib/dist/src/mesa/swrast

2014-07-09 Thread Taylor R Campbell
Module Name:xsrc
Committed By:   riastradh
Date:   Wed Jul  9 20:00:57 UTC 2014

Modified Files:
xsrc/external/mit/MesaLib/dist/src/mesa/swrast: s_span.c

Log Message:
Need a void * cast here too.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.5 -r1.2 \
xsrc/external/mit/MesaLib/dist/src/mesa/swrast/s_span.c

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



CVS commit: xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri

2014-07-09 Thread Taylor R Campbell
Module Name:xsrc
Committed By:   riastradh
Date:   Wed Jul  9 20:08:57 UTC 2014

Modified Files:
xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r200: radeon_span.c
xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r300: radeon_span.c
xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r600: radeon_span.c
xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon:
radeon_span.c

Log Message:
Define CPU_TO_LE16/LE16_TO_CPU consistently in main/compiler.h.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 \
xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r200/radeon_span.c
cvs rdiff -u -r1.3 -r1.4 \
xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r300/radeon_span.c
cvs rdiff -u -r1.1.1.1 -r1.2 \
xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r600/radeon_span.c
cvs rdiff -u -r1.1.1.5 -r1.2 \
xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/radeon_span.c

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



CVS commit: xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri

2014-07-09 Thread Taylor R Campbell
Module Name:xsrc
Committed By:   riastradh
Date:   Wed Jul  9 20:05:37 UTC 2014

Modified Files:
xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r200: r200_tcl.c
xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon:
radeon_tcl.c

Log Message:
Cast pointers to uintptr_t, not random integer types.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 \
xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r200/r200_tcl.c
cvs rdiff -u -r1.1.1.5 -r1.2 \
xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/radeon_tcl.c

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



CVS commit: xsrc/external/mit/MesaLib/dist/src/mesa/main

2014-07-09 Thread Taylor R Campbell
Module Name:xsrc
Committed By:   riastradh
Date:   Wed Jul  9 19:50:00 UTC 2014

Added Files:
xsrc/external/mit/MesaLib/dist/src/mesa/main: git_sha1.h

Log Message:
Add stub git_sha1.h.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 \
xsrc/external/mit/MesaLib/dist/src/mesa/main/git_sha1.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

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 16:30:11 UTC 2014

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

Log Message:
 Call bnx_print_adapter_info() before mii_attach() to not to
split bnx's dmesg into two parts by brgphy's dmesg.


To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 src/sys/dev/pci/if_bnx.c

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



CVS commit: [netbsd-5-1] src/libexec/httpd

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 16:09:40 UTC 2014

Modified Files:
src/libexec/httpd [netbsd-5-1]: Makefile auth-bozo.c bozohttpd.8
bozohttpd.c bozohttpd.h cgi-bozo.c content-bozo.c daemon-bozo.c
dir-index-bozo.c ssl-bozo.c tilde-luzah-bozo.c
Added Files:
src/libexec/httpd [netbsd-5-1]: CHANGES Makefile.boot lua-bozo.c main.c
netbsd_queue.h printenv.lua typescript
src/libexec/httpd/debug [netbsd-5-1]: Makefile
src/libexec/httpd/libbozohttpd [netbsd-5-1]: Makefile libbozohttpd.3
shlib_version
src/libexec/httpd/lua [netbsd-5-1]: Makefile bozo.lua glue.c
optparse.lua shlib_version
src/libexec/httpd/small [netbsd-5-1]: Makefile
src/libexec/httpd/testsuite [netbsd-5-1]: Makefile html_cmp t1.in
t1.out t10.in t10.out t2.in t2.out t3.in t3.out t4.in t4.out t5.in
t5.out t6.in t6.out t7.in t7.out t8.in t8.out t9.in t9.out
test-bigfile
src/libexec/httpd/testsuite/data [netbsd-5-1]: bigfile
bigfile.partial4000 bigfile.partial8000 file index.html

Log Message:
Pull up following revision(s) (requested by mrg in ticket #1913):
libexec/httpd/CHANGES   1.3-1.18
libexec/httpd/Makefile  1.8-1.22 via patch
libexec/httpd/Makefile.boot 1.3-1.6
libexec/httpd/auth-bozo.c   1.5-1.13
libexec/httpd/bozohttpd.8   1.6-1.46
libexec/httpd/bozohttpd.c   1.8,1.12-1.54
libexec/httpd/bozohttpd.h   1.8-1.32
libexec/httpd/cgi-bozo.c1.11-1.25
libexec/httpd/content-bozo.c1.4-1.10
libexec/httpd/daemon-bozo.c 1.5-1.16
libexec/httpd/dir-index-bozo.c  1.6-1.19
libexec/httpd/ssl-bozo.c1.5-1.16
libexec/httpd/tilde-luzah-bozo.c1.5-1.10
libexec/httpd/lua-bozo.c1.1-1.9
libexec/httpd/main.c1.1-1.7
libexec/httpd/netbsd_queue.h1.1
libexec/httpd/printenv.lua  1.1-1.2
libexec/httpd/debug/Makefile1.1
libexec/httpd/libbozohttpd/Makefile 1.2
libexec/httpd/libbozohttpd/libbozohttpd.3   1.3
libexec/httpd/libbozohttpd/shlib_version1.1
libexec/httpd/lua/Makefile  1.1
libexec/httpd/lua/bozo.lua  1.1
libexec/httpd/lua/glue.c1.1
libexec/httpd/lua/optparse.lua  1.1
libexec/httpd/lua/shlib_version 1.1
libexec/httpd/small/Makefile1.1-1.2
libexec/httpd/testsuite/Makefile1.4
libexec/httpd/testsuite/html_cmp1.4
libexec/httpd/testsuite/t1.in   1.3
libexec/httpd/testsuite/t1.out  1.3
libexec/httpd/testsuite/t10.in  1.1
libexec/httpd/testsuite/t10.out 1.1
libexec/httpd/testsuite/t2.in   1.3
libexec/httpd/testsuite/t2.out  1.3
libexec/httpd/testsuite/t3.in   1.3
libexec/httpd/testsuite/t3.out  1.3
libexec/httpd/testsuite/t4.in   1.3
libexec/httpd/testsuite/t4.out  1.3
libexec/httpd/testsuite/t5.in   1.3
libexec/httpd/testsuite/t5.out  1.3
libexec/httpd/testsuite/t6.in   1.3
libexec/httpd/testsuite/t6.out  1.3
libexec/httpd/testsuite/t7.in   1.3
libexec/httpd/testsuite/t7.out  1.3
libexec/httpd/testsuite/t8.in   1.3
libexec/httpd/testsuite/t8.out  1.3
libexec/httpd/testsuite/t9.in   1.3
libexec/httpd/testsuite/t9.out  1.3
libexec/httpd/testsuite/test-bigfile1.1
libexec/httpd/testsuite/data/bigfile1.1
libexec/httpd/testsuite/data/bigfile.partial4000 1.1
libexec/httpd/testsuite/data/bigfile.partial8000 1.1
libexec/httpd/testsuite/data/file   1.3
libexec/httpd/testsuite/data/index.html 1.3

Update bozohttpd from 20080303+patches to 20140708.

changes in bozohttpd 20140708:
o  fixes for virtual host support, from rajeev_v_pil...@yahoo.com
o  avoid printing double errors, from s...@netbsd.org
o  fix a security issue in basic HTTP authentication which would allow
   authentication to be bypassed, from s...@netbsd.org

changes in bozohttpd 20140201:
o  support .svg files
o  fix a core dump when requests timeout

changes in bozohttpd 20140102:
o  update a few content types
o  add support for directly calling lua scripts to handle
   processes, from mbal...@netbsd.org
o  properly escape generated HTML
o  add authentication for redirections, from mar...@netbsd.org
o  handle chained

CVS commit: [netbsd-5] src/doc

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 16:11:23 UTC 2014

Modified Files:
src/doc [netbsd-5]: CHANGES-5.3

Log Message:
Ticket 1913.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.62 -r1.1.2.63 src/doc/CHANGES-5.3

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



CVS commit: [netbsd-5-1] src/doc

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 16:12:11 UTC 2014

Modified Files:
src/doc [netbsd-5-1]: CHANGES-5.1.5

Log Message:
Ticket 1913.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.10 -r1.1.2.11 src/doc/CHANGES-5.1.5

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



CVS commit: [netbsd-5-2] src/doc

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 16:11:45 UTC 2014

Modified Files:
src/doc [netbsd-5-2]: CHANGES-5.2.3

Log Message:
Ticket #1913.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.10 -r1.1.2.11 src/doc/CHANGES-5.2.3

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

2014-07-09 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed Jul  9 16:06:47 UTC 2014

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

Log Message:
mention sig == 0


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/lib/libc/sys/kill.2

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



CVS commit: [netbsd-5-2] src/libexec/httpd

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 16:04:14 UTC 2014

Modified Files:
src/libexec/httpd [netbsd-5-2]: Makefile auth-bozo.c bozohttpd.8
bozohttpd.c bozohttpd.h cgi-bozo.c content-bozo.c daemon-bozo.c
dir-index-bozo.c ssl-bozo.c tilde-luzah-bozo.c
Added Files:
src/libexec/httpd [netbsd-5-2]: CHANGES Makefile.boot lua-bozo.c main.c
netbsd_queue.h printenv.lua typescript
src/libexec/httpd/debug [netbsd-5-2]: Makefile
src/libexec/httpd/libbozohttpd [netbsd-5-2]: Makefile libbozohttpd.3
shlib_version
src/libexec/httpd/lua [netbsd-5-2]: Makefile bozo.lua glue.c
optparse.lua shlib_version
src/libexec/httpd/small [netbsd-5-2]: Makefile
src/libexec/httpd/testsuite [netbsd-5-2]: Makefile html_cmp t1.in
t1.out t10.in t10.out t2.in t2.out t3.in t3.out t4.in t4.out t5.in
t5.out t6.in t6.out t7.in t7.out t8.in t8.out t9.in t9.out
test-bigfile
src/libexec/httpd/testsuite/data [netbsd-5-2]: bigfile
bigfile.partial4000 bigfile.partial8000 file index.html

Log Message:
Pull up following revision(s) (requested by mrg in ticket #1913):
libexec/httpd/CHANGES   1.3-1.18
libexec/httpd/Makefile  1.8-1.22 via patch
libexec/httpd/Makefile.boot 1.3-1.6
libexec/httpd/auth-bozo.c   1.5-1.13
libexec/httpd/bozohttpd.8   1.6-1.46
libexec/httpd/bozohttpd.c   1.8,1.12-1.54
libexec/httpd/bozohttpd.h   1.8-1.32
libexec/httpd/cgi-bozo.c1.11-1.25
libexec/httpd/content-bozo.c1.4-1.10
libexec/httpd/daemon-bozo.c 1.5-1.16
libexec/httpd/dir-index-bozo.c  1.6-1.19
libexec/httpd/ssl-bozo.c1.5-1.16
libexec/httpd/tilde-luzah-bozo.c1.5-1.10
libexec/httpd/lua-bozo.c1.1-1.9
libexec/httpd/main.c1.1-1.7
libexec/httpd/netbsd_queue.h1.1
libexec/httpd/printenv.lua  1.1-1.2
libexec/httpd/debug/Makefile1.1
libexec/httpd/libbozohttpd/Makefile 1.2
libexec/httpd/libbozohttpd/libbozohttpd.3   1.3
libexec/httpd/libbozohttpd/shlib_version1.1
libexec/httpd/lua/Makefile  1.1
libexec/httpd/lua/bozo.lua  1.1
libexec/httpd/lua/glue.c1.1
libexec/httpd/lua/optparse.lua  1.1
libexec/httpd/lua/shlib_version 1.1
libexec/httpd/small/Makefile1.1-1.2
libexec/httpd/testsuite/Makefile1.4
libexec/httpd/testsuite/html_cmp1.4
libexec/httpd/testsuite/t1.in   1.3
libexec/httpd/testsuite/t1.out  1.3
libexec/httpd/testsuite/t10.in  1.1
libexec/httpd/testsuite/t10.out 1.1
libexec/httpd/testsuite/t2.in   1.3
libexec/httpd/testsuite/t2.out  1.3
libexec/httpd/testsuite/t3.in   1.3
libexec/httpd/testsuite/t3.out  1.3
libexec/httpd/testsuite/t4.in   1.3
libexec/httpd/testsuite/t4.out  1.3
libexec/httpd/testsuite/t5.in   1.3
libexec/httpd/testsuite/t5.out  1.3
libexec/httpd/testsuite/t6.in   1.3
libexec/httpd/testsuite/t6.out  1.3
libexec/httpd/testsuite/t7.in   1.3
libexec/httpd/testsuite/t7.out  1.3
libexec/httpd/testsuite/t8.in   1.3
libexec/httpd/testsuite/t8.out  1.3
libexec/httpd/testsuite/t9.in   1.3
libexec/httpd/testsuite/t9.out  1.3
libexec/httpd/testsuite/test-bigfile1.1
libexec/httpd/testsuite/data/bigfile1.1
libexec/httpd/testsuite/data/bigfile.partial4000 1.1
libexec/httpd/testsuite/data/bigfile.partial8000 1.1
libexec/httpd/testsuite/data/file   1.3
libexec/httpd/testsuite/data/index.html 1.3

Update bozohttpd from 20080303+patches to 20140708.

changes in bozohttpd 20140708:
o  fixes for virtual host support, from rajeev_v_pil...@yahoo.com
o  avoid printing double errors, from s...@netbsd.org
o  fix a security issue in basic HTTP authentication which would allow
   authentication to be bypassed, from s...@netbsd.org

changes in bozohttpd 20140201:
o  support .svg files
o  fix a core dump when requests timeout

changes in bozohttpd 20140102:
o  update a few content types
o  add support for directly calling lua scripts to handle
   processes, from mbal...@netbsd.org
o  properly escape generated HTML
o  add authentication for redirections, from mar...@netbsd.org
o  handle chained

CVS commit: src/tests/net/bpfjit

2014-07-09 Thread Alexander Nasonov
Module Name:src
Committed By:   alnsn
Date:   Wed Jul  9 15:56:12 UTC 2014

Modified Files:
src/tests/net/bpfjit: t_cop.c

Log Message:
Fix copy/paste error: s/rump_unschedule/rump_schedule/.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/net/bpfjit/t_cop.c

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



CVS commit: src/sys/rump/net/lib/libsockin

2014-07-09 Thread Tyler R. Retzlaff
Module Name:src
Committed By:   rtr
Date:   Wed Jul  9 15:37:55 UTC 2014

Modified Files:
src/sys/rump/net/lib/libsockin: sockin.c

Log Message:
fix name clash i introduced when adding sockin_accept() pru by renaming
the rump sockin_accept(struct socket *) to sockin_waccept(struct socket *)

not a very creative name the 'w' indicates worker and was chosen to
prefix the word accept to make it not pattern match with _accept. if
someone prefers a different name then please feel free to change it.


To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/sys/rump/net/lib/libsockin/sockin.c

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



CVS commit: [netbsd-5] src/libexec/httpd

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 15:21:21 UTC 2014

Modified Files:
src/libexec/httpd [netbsd-5]: Makefile auth-bozo.c bozohttpd.8
bozohttpd.c bozohttpd.h cgi-bozo.c content-bozo.c daemon-bozo.c
dir-index-bozo.c ssl-bozo.c tilde-luzah-bozo.c
Added Files:
src/libexec/httpd [netbsd-5]: CHANGES Makefile.boot lua-bozo.c main.c
netbsd_queue.h printenv.lua
src/libexec/httpd/debug [netbsd-5]: Makefile
src/libexec/httpd/libbozohttpd [netbsd-5]: Makefile libbozohttpd.3
shlib_version
src/libexec/httpd/lua [netbsd-5]: Makefile bozo.lua glue.c optparse.lua
shlib_version
src/libexec/httpd/small [netbsd-5]: Makefile
src/libexec/httpd/testsuite [netbsd-5]: Makefile html_cmp t1.in t1.out
t10.in t10.out t2.in t2.out t3.in t3.out t4.in t4.out t5.in t5.out
t6.in t6.out t7.in t7.out t8.in t8.out t9.in t9.out test-bigfile
src/libexec/httpd/testsuite/data [netbsd-5]: bigfile
bigfile.partial4000 bigfile.partial8000 file index.html

Log Message:
Pull up following revision(s) (requested by mrg in ticket #1913):
libexec/httpd/CHANGES   1.3-1.18
libexec/httpd/Makefile  1.8-1.22 via patch
libexec/httpd/Makefile.boot 1.3-1.6
libexec/httpd/auth-bozo.c   1.5-1.13
libexec/httpd/bozohttpd.8   1.6-1.46
libexec/httpd/bozohttpd.c   1.8,1.12-1.54
libexec/httpd/bozohttpd.h   1.8-1.32
libexec/httpd/cgi-bozo.c1.11-1.25
libexec/httpd/content-bozo.c1.4-1.10
libexec/httpd/daemon-bozo.c 1.5-1.16
libexec/httpd/dir-index-bozo.c  1.6-1.19
libexec/httpd/ssl-bozo.c1.5-1.16
libexec/httpd/tilde-luzah-bozo.c1.5-1.10
libexec/httpd/lua-bozo.c1.1-1.9
libexec/httpd/main.c1.1-1.7
libexec/httpd/netbsd_queue.h1.1
libexec/httpd/printenv.lua  1.1-1.2
libexec/httpd/debug/Makefile1.1
libexec/httpd/libbozohttpd/Makefile 1.2
libexec/httpd/libbozohttpd/libbozohttpd.3   1.3
libexec/httpd/libbozohttpd/shlib_version1.1
libexec/httpd/lua/Makefile  1.1
libexec/httpd/lua/bozo.lua  1.1
libexec/httpd/lua/glue.c1.1
libexec/httpd/lua/optparse.lua  1.1
libexec/httpd/lua/shlib_version 1.1
libexec/httpd/small/Makefile1.1-1.2
libexec/httpd/testsuite/Makefile1.4
libexec/httpd/testsuite/html_cmp1.4
libexec/httpd/testsuite/t1.in   1.3
libexec/httpd/testsuite/t1.out  1.3
libexec/httpd/testsuite/t10.in  1.1
libexec/httpd/testsuite/t10.out 1.1
libexec/httpd/testsuite/t2.in   1.3
libexec/httpd/testsuite/t2.out  1.3
libexec/httpd/testsuite/t3.in   1.3
libexec/httpd/testsuite/t3.out  1.3
libexec/httpd/testsuite/t4.in   1.3
libexec/httpd/testsuite/t4.out  1.3
libexec/httpd/testsuite/t5.in   1.3
libexec/httpd/testsuite/t5.out  1.3
libexec/httpd/testsuite/t6.in   1.3
libexec/httpd/testsuite/t6.out  1.3
libexec/httpd/testsuite/t7.in   1.3
libexec/httpd/testsuite/t7.out  1.3
libexec/httpd/testsuite/t8.in   1.3
libexec/httpd/testsuite/t8.out  1.3
libexec/httpd/testsuite/t9.in   1.3
libexec/httpd/testsuite/t9.out  1.3
libexec/httpd/testsuite/test-bigfile1.1
libexec/httpd/testsuite/data/bigfile1.1
libexec/httpd/testsuite/data/bigfile.partial4000 1.1
libexec/httpd/testsuite/data/bigfile.partial8000 1.1
libexec/httpd/testsuite/data/file   1.3
libexec/httpd/testsuite/data/index.html 1.3

Update bozohttpd from 20080303+patches to 20140708.

changes in bozohttpd 20140708:
o  fixes for virtual host support, from rajeev_v_pil...@yahoo.com
o  avoid printing double errors, from s...@netbsd.org
o  fix a security issue in basic HTTP authentication which would allow
   authentication to be bypassed, from s...@netbsd.org

changes in bozohttpd 20140201:
o  support .svg files
o  fix a core dump when requests timeout

changes in bozohttpd 20140102:
o  update a few content types
o  add support for directly calling lua scripts to handle
   processes, from mbal...@netbsd.org
o  properly escape generated HTML
o  add authentication for redirections, from mar...@netbsd.org
o  handle chained ssl certifications, from el...@netbsd.

CVS commit: src/sys

2014-07-09 Thread Tyler R. Retzlaff
Module Name:src
Committed By:   rtr
Date:   Wed Jul  9 14:41:43 UTC 2014

Modified Files:
src/sys/kern: uipc_socket.c uipc_usrreq.c
src/sys/net: if_mpls.c raw_usrreq.c rtsock.c
src/sys/netatalk: ddp_usrreq.c
src/sys/netbt: hci_socket.c l2cap_socket.c rfcomm_socket.c sco_socket.c
src/sys/netinet: raw_ip.c tcp_usrreq.c udp_usrreq.c
src/sys/netinet6: raw_ip6.c udp6_usrreq.c
src/sys/netipsec: keysock.c
src/sys/netmpls: mpls_proto.c
src/sys/netnatm: natm.c
src/sys/rump/net/lib/libsockin: sockin.c
src/sys/sys: protosw.h

Log Message:
* split PRU_ACCEPT function out of pr_generic() usrreq switches and put
  into a separate function xxx_accept(struct socket *, struct mbuf *)

note: future cleanup will take place to remove struct mbuf parameter
type and replace it with a more appropriate type.

patch reviewed by rmind


To generate a diff of this commit:
cvs rdiff -u -r1.224 -r1.225 src/sys/kern/uipc_socket.c
cvs rdiff -u -r1.158 -r1.159 src/sys/kern/uipc_usrreq.c
cvs rdiff -u -r1.14 -r1.15 src/sys/net/if_mpls.c
cvs rdiff -u -r1.42 -r1.43 src/sys/net/raw_usrreq.c
cvs rdiff -u -r1.154 -r1.155 src/sys/net/rtsock.c
cvs rdiff -u -r1.52 -r1.53 src/sys/netatalk/ddp_usrreq.c
cvs rdiff -u -r1.31 -r1.32 src/sys/netbt/hci_socket.c
cvs rdiff -u -r1.22 -r1.23 src/sys/netbt/l2cap_socket.c
cvs rdiff -u -r1.23 -r1.24 src/sys/netbt/rfcomm_socket.c
cvs rdiff -u -r1.24 -r1.25 src/sys/netbt/sco_socket.c
cvs rdiff -u -r1.132 -r1.133 src/sys/netinet/raw_ip.c
cvs rdiff -u -r1.185 -r1.186 src/sys/netinet/tcp_usrreq.c
cvs rdiff -u -r1.207 -r1.208 src/sys/netinet/udp_usrreq.c
cvs rdiff -u -r1.126 -r1.127 src/sys/netinet6/raw_ip6.c
cvs rdiff -u -r1.106 -r1.107 src/sys/netinet6/udp6_usrreq.c
cvs rdiff -u -r1.34 -r1.35 src/sys/netipsec/keysock.c
cvs rdiff -u -r1.14 -r1.15 src/sys/netmpls/mpls_proto.c
cvs rdiff -u -r1.36 -r1.37 src/sys/netnatm/natm.c
cvs rdiff -u -r1.47 -r1.48 src/sys/rump/net/lib/libsockin/sockin.c
cvs rdiff -u -r1.51 -r1.52 src/sys/sys/protosw.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/libdrm/dist

2014-07-09 Thread Taylor R Campbell
Module Name:xsrc
Committed By:   riastradh
Date:   Wed Jul  9 14:12:39 UTC 2014

Modified Files:
xsrc/external/mit/libdrm/dist: xf86atomic.h

Log Message:
Fix libdrm's atomic_dec_and_test on NetBSD (and Solaris, while here).

_nv means new value, not old value!  This may help to fix various
instability in userland graphics, now that we aren't freeing stuff
with a reference count of 1 any more.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/libdrm/dist/xf86atomic.h

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



CVS commit: src

2014-07-09 Thread Alexander Nasonov
Module Name:src
Committed By:   alnsn
Date:   Wed Jul  9 13:50:48 UTC 2014

Modified Files:
src/distrib/sets/lists/debug: mi
src/distrib/sets/lists/tests: mi
src/tests/net/bpfjit: Makefile

Log Message:
Add t_cop and t_extmem kernel bpfjit tests to the build.


To generate a diff of this commit:
cvs rdiff -u -r1.70 -r1.71 src/distrib/sets/lists/debug/mi
cvs rdiff -u -r1.578 -r1.579 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.3 -r1.4 src/tests/net/bpfjit/Makefile

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



CVS commit: src/tests/net/bpfjit

2014-07-09 Thread Alexander Nasonov
Module Name:src
Committed By:   alnsn
Date:   Wed Jul  9 13:49:49 UTC 2014

Added Files:
src/tests/net/bpfjit: t_cop.c t_extmem.c

Log Message:
Add t_cop and t_extmem kernel bpfjit tests.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/tests/net/bpfjit/t_cop.c \
src/tests/net/bpfjit/t_extmem.c

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



CVS commit: src/sys/rump

2014-07-09 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Wed Jul  9 12:20:32 UTC 2014

Modified Files:
src/sys/rump: listsrcdirs

Log Message:
Make the file system utility list consistent between fsck, mount and newfs.
For now, include ext2, ffs and msdosfs (and as a "special case", mount_tmpfs).


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/rump/listsrcdirs

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



CVS commit: src/sys/rump

2014-07-09 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Wed Jul  9 12:14:47 UTC 2014

Modified Files:
src/sys/rump: listsrcdirs

Log Message:
split "sys" further into "sys" and "posix", per comments from justin


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/rump/listsrcdirs

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/debug

2014-07-09 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Jul  9 11:45:46 UTC 2014

Modified Files:
src/distrib/sets/lists/debug: ad.powerpc md.evbmips md.sparc64

Log Message:
Add libirs_g.a to more compat lib directories


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/distrib/sets/lists/debug/ad.powerpc
cvs rdiff -u -r1.3 -r1.4 src/distrib/sets/lists/debug/md.evbmips
cvs rdiff -u -r1.54 -r1.55 src/distrib/sets/lists/debug/md.sparc64

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



CVS commit: [netbsd-6-1] src/doc

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 09:51:22 UTC 2014

Modified Files:
src/doc [netbsd-6-1]: CHANGES-6.1.5

Log Message:
Ticket 1095.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.13 -r1.1.2.14 src/doc/CHANGES-6.1.5

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



CVS commit: [netbsd-6-0] src/doc

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 09:51:48 UTC 2014

Modified Files:
src/doc [netbsd-6-0]: CHANGES-6.0.6

Log Message:
Ticket 1095.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.13 -r1.1.2.14 src/doc/CHANGES-6.0.6

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



CVS commit: [netbsd-6] src/doc

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 09:50:24 UTC 2014

Modified Files:
src/doc [netbsd-6]: CHANGES-6.2

Log Message:
Ticket 1095.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.121 -r1.1.2.122 src/doc/CHANGES-6.2

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



CVS commit: [netbsd-6-0] src/libexec/httpd

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 09:47:11 UTC 2014

Modified Files:
src/libexec/httpd [netbsd-6-0]: CHANGES Makefile Makefile.boot
auth-bozo.c bozohttpd.8 bozohttpd.c bozohttpd.h cgi-bozo.c
content-bozo.c daemon-bozo.c dir-index-bozo.c main.c ssl-bozo.c
tilde-luzah-bozo.c
src/libexec/httpd/libbozohttpd [netbsd-6-0]: Makefile libbozohttpd.3
src/libexec/httpd/small [netbsd-6-0]: Makefile
Added Files:
src/libexec/httpd [netbsd-6-0]: lua-bozo.c netbsd_queue.h printenv.lua

Log Message:
Pull up following revision(s) (requested by mrg in ticket #1095):
libexec/httpd/CHANGES   1.12-1.18
libexec/httpd/Makefile  1.13-1.22
libexec/httpd/Makefile.boot 1.6
libexec/httpd/auth-bozo.c   1.11-1.13
libexec/httpd/bozohttpd.8   1.33-1.46
libexec/httpd/bozohttpd.c   1.31-1.54
libexec/httpd/bozohttpd.h   1.21-1.32
libexec/httpd/cgi-bozo.c1.21-1.25
libexec/httpd/content-bozo.c1.8-1.10
libexec/httpd/daemon-bozo.c 1.16-1.16
libexec/httpd/dir-index-bozo.c  1.15-1.19
libexec/httpd/lua-bozo.c1.1-1.9
libexec/httpd/main.c1.6-1.7
libexec/httpd/netbsd_queue.h1.1
libexec/httpd/printenv.lua  1.1-1.2
libexec/httpd/ssl-bozo.c1.14-1.16
libexec/httpd/tilde-luzah-bozo.c1.10
libexec/httpd/libbozohttpd/Makefile 1.2
libexec/httpd/libbozohttpd/libbozohttpd.3   1.2-1.3
libexec/httpd/small/Makefile1.2

Update bozohttpd from 2018 to 20140708.

changes in bozohttpd 20140708:
o  fixes for virtual host support, from rajeev_v_pil...@yahoo.com
o  avoid printing double errors, from s...@netbsd.org
o  fix a security issue in basic HTTP authentication which would allow
   authentication to be bypassed, from s...@netbsd.org

changes in bozohttpd 20140201:
o  support .svg files
o  fix a core dump when requests timeout

changes in bozohttpd 20140102:
o  update a few content types
o  add support for directly calling lua scripts to handle
   processes, from mbal...@netbsd.org
o  properly escape generated HTML
o  add authentication for redirections, from mar...@netbsd.org
o  handle chained ssl certifications, from el...@netbsd.org
o  add basic support for gzipped files, from el...@netbsd.org
o  properly escape generated URIs


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.11.6.1 src/libexec/httpd/CHANGES
cvs rdiff -u -r1.12 -r1.12.14.1 src/libexec/httpd/Makefile
cvs rdiff -u -r1.5 -r1.5.14.1 src/libexec/httpd/Makefile.boot
cvs rdiff -u -r1.10 -r1.10.8.1 src/libexec/httpd/auth-bozo.c
cvs rdiff -u -r1.32 -r1.32.6.1 src/libexec/httpd/bozohttpd.8
cvs rdiff -u -r1.30 -r1.30.6.1 src/libexec/httpd/bozohttpd.c
cvs rdiff -u -r1.20 -r1.20.6.1 src/libexec/httpd/bozohttpd.h
cvs rdiff -u -r1.20 -r1.20.8.1 src/libexec/httpd/cgi-bozo.c
cvs rdiff -u -r1.7 -r1.7.8.1 src/libexec/httpd/content-bozo.c
cvs rdiff -u -r1.15 -r1.15.8.1 src/libexec/httpd/daemon-bozo.c
cvs rdiff -u -r1.13.2.1 -r1.13.2.1.4.1 src/libexec/httpd/dir-index-bozo.c
cvs rdiff -u -r0 -r1.9.10.2 src/libexec/httpd/lua-bozo.c
cvs rdiff -u -r1.5 -r1.5.8.1 src/libexec/httpd/main.c
cvs rdiff -u -r0 -r1.1.12.2 src/libexec/httpd/netbsd_queue.h
cvs rdiff -u -r0 -r1.2.10.2 src/libexec/httpd/printenv.lua
cvs rdiff -u -r1.13 -r1.13.6.1 src/libexec/httpd/ssl-bozo.c
cvs rdiff -u -r1.9 -r1.9.8.1 src/libexec/httpd/tilde-luzah-bozo.c
cvs rdiff -u -r1.1.1.1 -r1.1.1.1.14.1 src/libexec/httpd/libbozohttpd/Makefile \
src/libexec/httpd/libbozohttpd/libbozohttpd.3
cvs rdiff -u -r1.1.1.1 -r1.1.1.1.14.1 src/libexec/httpd/small/Makefile

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



CVS commit: [netbsd-6-1] src/libexec/httpd

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 09:44:56 UTC 2014

Modified Files:
src/libexec/httpd [netbsd-6-1]: CHANGES Makefile Makefile.boot
auth-bozo.c bozohttpd.8 bozohttpd.c bozohttpd.h cgi-bozo.c
content-bozo.c daemon-bozo.c dir-index-bozo.c main.c ssl-bozo.c
tilde-luzah-bozo.c
src/libexec/httpd/libbozohttpd [netbsd-6-1]: Makefile libbozohttpd.3
src/libexec/httpd/small [netbsd-6-1]: Makefile
Added Files:
src/libexec/httpd [netbsd-6-1]: lua-bozo.c netbsd_queue.h printenv.lua

Log Message:
Pull up following revision(s) (requested by mrg in ticket #1095):
libexec/httpd/CHANGES   1.12-1.18
libexec/httpd/Makefile  1.13-1.22
libexec/httpd/Makefile.boot 1.6
libexec/httpd/auth-bozo.c   1.11-1.13
libexec/httpd/bozohttpd.8   1.33-1.46
libexec/httpd/bozohttpd.c   1.31-1.54
libexec/httpd/bozohttpd.h   1.21-1.32
libexec/httpd/cgi-bozo.c1.21-1.25
libexec/httpd/content-bozo.c1.8-1.10
libexec/httpd/daemon-bozo.c 1.16-1.16
libexec/httpd/dir-index-bozo.c  1.15-1.19
libexec/httpd/lua-bozo.c1.1-1.9
libexec/httpd/main.c1.6-1.7
libexec/httpd/netbsd_queue.h1.1
libexec/httpd/printenv.lua  1.1-1.2
libexec/httpd/ssl-bozo.c1.14-1.16
libexec/httpd/tilde-luzah-bozo.c1.10
libexec/httpd/libbozohttpd/Makefile 1.2
libexec/httpd/libbozohttpd/libbozohttpd.3   1.2-1.3
libexec/httpd/small/Makefile1.2

Update bozohttpd from 2018 to 20140708.

changes in bozohttpd 20140708:
o  fixes for virtual host support, from rajeev_v_pil...@yahoo.com
o  avoid printing double errors, from s...@netbsd.org
o  fix a security issue in basic HTTP authentication which would allow
   authentication to be bypassed, from s...@netbsd.org

changes in bozohttpd 20140201:
o  support .svg files
o  fix a core dump when requests timeout

changes in bozohttpd 20140102:
o  update a few content types
o  add support for directly calling lua scripts to handle
   processes, from mbal...@netbsd.org
o  properly escape generated HTML
o  add authentication for redirections, from mar...@netbsd.org
o  handle chained ssl certifications, from el...@netbsd.org
o  add basic support for gzipped files, from el...@netbsd.org
o  properly escape generated URIs


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.11.8.1 src/libexec/httpd/CHANGES
cvs rdiff -u -r1.12 -r1.12.20.1 src/libexec/httpd/Makefile
cvs rdiff -u -r1.5 -r1.5.20.1 src/libexec/httpd/Makefile.boot
cvs rdiff -u -r1.10 -r1.10.14.1 src/libexec/httpd/auth-bozo.c
cvs rdiff -u -r1.32 -r1.32.8.1 src/libexec/httpd/bozohttpd.8
cvs rdiff -u -r1.30 -r1.30.8.1 src/libexec/httpd/bozohttpd.c
cvs rdiff -u -r1.20 -r1.20.8.1 src/libexec/httpd/bozohttpd.h
cvs rdiff -u -r1.20 -r1.20.14.1 src/libexec/httpd/cgi-bozo.c
cvs rdiff -u -r1.7 -r1.7.14.1 src/libexec/httpd/content-bozo.c
cvs rdiff -u -r1.15 -r1.15.14.1 src/libexec/httpd/daemon-bozo.c
cvs rdiff -u -r1.13.2.1 -r1.13.2.1.6.1 src/libexec/httpd/dir-index-bozo.c
cvs rdiff -u -r0 -r1.9.8.2 src/libexec/httpd/lua-bozo.c
cvs rdiff -u -r1.5 -r1.5.14.1 src/libexec/httpd/main.c
cvs rdiff -u -r0 -r1.1.10.2 src/libexec/httpd/netbsd_queue.h
cvs rdiff -u -r0 -r1.2.8.2 src/libexec/httpd/printenv.lua
cvs rdiff -u -r1.13 -r1.13.8.1 src/libexec/httpd/ssl-bozo.c
cvs rdiff -u -r1.9 -r1.9.14.1 src/libexec/httpd/tilde-luzah-bozo.c
cvs rdiff -u -r1.1.1.1 -r1.1.1.1.20.1 src/libexec/httpd/libbozohttpd/Makefile \
src/libexec/httpd/libbozohttpd/libbozohttpd.3
cvs rdiff -u -r1.1.1.1 -r1.1.1.1.20.1 src/libexec/httpd/small/Makefile

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



CVS commit: [netbsd-6] src/libexec/httpd

2014-07-09 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Jul  9 09:42:39 UTC 2014

Modified Files:
src/libexec/httpd [netbsd-6]: CHANGES Makefile Makefile.boot
auth-bozo.c bozohttpd.8 bozohttpd.c bozohttpd.h cgi-bozo.c
content-bozo.c daemon-bozo.c dir-index-bozo.c main.c ssl-bozo.c
tilde-luzah-bozo.c
src/libexec/httpd/libbozohttpd [netbsd-6]: Makefile libbozohttpd.3
src/libexec/httpd/small [netbsd-6]: Makefile
Added Files:
src/libexec/httpd [netbsd-6]: lua-bozo.c netbsd_queue.h printenv.lua

Log Message:
Pull up following revision(s) (requested by mrg in ticket #1095):
libexec/httpd/CHANGES   1.12-1.18
libexec/httpd/Makefile  1.13-1.22
libexec/httpd/Makefile.boot 1.6
libexec/httpd/auth-bozo.c   1.11-1.13
libexec/httpd/bozohttpd.8   1.33-1.46
libexec/httpd/bozohttpd.c   1.31-1.54
libexec/httpd/bozohttpd.h   1.21-1.32
libexec/httpd/cgi-bozo.c1.21-1.25
libexec/httpd/content-bozo.c1.8-1.10
libexec/httpd/daemon-bozo.c 1.16-1.16
libexec/httpd/dir-index-bozo.c  1.15-1.19
libexec/httpd/lua-bozo.c1.1-1.9
libexec/httpd/main.c1.6-1.7
libexec/httpd/netbsd_queue.h1.1
libexec/httpd/printenv.lua  1.1-1.2
libexec/httpd/ssl-bozo.c1.14-1.16
libexec/httpd/tilde-luzah-bozo.c1.10
libexec/httpd/libbozohttpd/Makefile 1.2
libexec/httpd/libbozohttpd/libbozohttpd.3   1.2-1.3
libexec/httpd/small/Makefile1.2

Update bozohttpd from 2018 to 20140708.

changes in bozohttpd 20140708:
o  fixes for virtual host support, from rajeev_v_pil...@yahoo.com
o  avoid printing double errors, from s...@netbsd.org
o  fix a security issue in basic HTTP authentication which would allow
   authentication to be bypassed, from s...@netbsd.org

changes in bozohttpd 20140201:
o  support .svg files
o  fix a core dump when requests timeout

changes in bozohttpd 20140102:
o  update a few content types
o  add support for directly calling lua scripts to handle
   processes, from mbal...@netbsd.org
o  properly escape generated HTML
o  add authentication for redirections, from mar...@netbsd.org
o  handle chained ssl certifications, from el...@netbsd.org
o  add basic support for gzipped files, from el...@netbsd.org
o  properly escape generated URIs


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.11.2.1 src/libexec/httpd/CHANGES
cvs rdiff -u -r1.12 -r1.12.8.1 src/libexec/httpd/Makefile
cvs rdiff -u -r1.5 -r1.5.8.1 src/libexec/httpd/Makefile.boot
cvs rdiff -u -r1.10 -r1.10.2.1 src/libexec/httpd/auth-bozo.c
cvs rdiff -u -r1.32 -r1.32.2.1 src/libexec/httpd/bozohttpd.8
cvs rdiff -u -r1.30 -r1.30.2.1 src/libexec/httpd/bozohttpd.c
cvs rdiff -u -r1.20 -r1.20.2.1 src/libexec/httpd/bozohttpd.h \
src/libexec/httpd/cgi-bozo.c
cvs rdiff -u -r1.7 -r1.7.2.1 src/libexec/httpd/content-bozo.c
cvs rdiff -u -r1.15 -r1.15.2.1 src/libexec/httpd/daemon-bozo.c
cvs rdiff -u -r1.13.2.1 -r1.13.2.2 src/libexec/httpd/dir-index-bozo.c
cvs rdiff -u -r0 -r1.9.6.2 src/libexec/httpd/lua-bozo.c
cvs rdiff -u -r1.5 -r1.5.2.1 src/libexec/httpd/main.c
cvs rdiff -u -r0 -r1.1.8.2 src/libexec/httpd/netbsd_queue.h
cvs rdiff -u -r0 -r1.2.6.2 src/libexec/httpd/printenv.lua
cvs rdiff -u -r1.13 -r1.13.2.1 src/libexec/httpd/ssl-bozo.c
cvs rdiff -u -r1.9 -r1.9.2.1 src/libexec/httpd/tilde-luzah-bozo.c
cvs rdiff -u -r1.1.1.1 -r1.1.1.1.8.1 src/libexec/httpd/libbozohttpd/Makefile \
src/libexec/httpd/libbozohttpd/libbozohttpd.3
cvs rdiff -u -r1.1.1.1 -r1.1.1.1.8.1 src/libexec/httpd/small/Makefile

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



CVS commit: src/sys/fs/msdosfs

2014-07-09 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Wed Jul  9 09:00:18 UTC 2014

Modified Files:
src/sys/fs/msdosfs: msdosfs_vfsops.c

Log Message:
Minor changes:
 - malloc()+memset() -> malloc(|M_ZERO)
 - rename 'vers' to 'FSVers'
 - declare 'ExtFlags' instead of calling getushort() two times


To generate a diff of this commit:
cvs rdiff -u -r1.111 -r1.112 src/sys/fs/msdosfs/msdosfs_vfsops.c

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



CVS commit: src/sys

2014-07-09 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Wed Jul  9 08:43:54 UTC 2014

Modified Files:
src/sys/fs/cd9660: cd9660_vfsops.c
src/sys/fs/msdosfs: msdosfs_vfsops.c
src/sys/ufs/ext2fs: ext2fs_vfsops.c

Log Message:
Remove ROOTNAME (unused).


To generate a diff of this commit:
cvs rdiff -u -r1.88 -r1.89 src/sys/fs/cd9660/cd9660_vfsops.c
cvs rdiff -u -r1.110 -r1.111 src/sys/fs/msdosfs/msdosfs_vfsops.c
cvs rdiff -u -r1.182 -r1.183 src/sys/ufs/ext2fs/ext2fs_vfsops.c

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