CVS commit: src/lib/lua/sqlite

2017-05-10 Thread Marc Balmer
Module Name:src
Committed By:   mbalmer
Date:   Wed May 10 07:36:01 UTC 2017

Modified Files:
src/lib/lua/sqlite: sqlite.c

Log Message:
Guard against double freeing of objects (explicit by the Lua program, then
later by the garbage collector).
This fixes PR bin/52218.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/lib/lua/sqlite/sqlite.c

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



CVS commit: src/share/examples/lua

2017-05-10 Thread Marc Balmer
Module Name:src
Committed By:   mbalmer
Date:   Wed May 10 07:37:33 UTC 2017

Modified Files:
src/share/examples/lua: sqlite.lua

Log Message:
Fix flags for DB open.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/share/examples/lua/sqlite.lua

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



CVS commit: src/share/examples/lua

2017-05-10 Thread Marc Balmer
Module Name:src
Committed By:   mbalmer
Date:   Wed May 10 07:51:07 UTC 2017

Modified Files:
src/share/examples/lua: gpio.lua

Log Message:
Clarify gpio example.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/share/examples/lua/gpio.lua

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



CVS commit: src/sys/arch/x86/x86

2017-05-10 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed May 10 08:02:37 UTC 2017

Modified Files:
src/sys/arch/x86/x86: identcpu.c

Log Message:
 Print package ID, core ID and SMT ID.


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 src/sys/arch/x86/x86/identcpu.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/ata

2017-05-10 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed May 10 08:46:39 UTC 2017

Modified Files:
src/sys/dev/ata: sata_subr.c

Log Message:
 KNF. No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/dev/ata/sata_subr.c

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



CVS commit: src

2017-05-10 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Wed May 10 08:48:46 UTC 2017

Modified Files:
src/lib/librumpclient: Makefile
src/lib/librumphijack: Makefile
src/lib/librumpuser: Makefile
src/usr.bin/rump_allserver: Makefile
src/usr.bin/rump_server: Makefile

Log Message:
Revert previous change so builds can resume.
_KERNTYPES needs to be defined for NetBSD builds to succeed.
_KERNTYPES must not be defined for buildrum.sh builds to succeed.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/lib/librumpclient/Makefile
cvs rdiff -u -r1.18 -r1.19 src/lib/librumphijack/Makefile
cvs rdiff -u -r1.25 -r1.26 src/lib/librumpuser/Makefile
cvs rdiff -u -r1.9 -r1.10 src/usr.bin/rump_allserver/Makefile
cvs rdiff -u -r1.10 -r1.11 src/usr.bin/rump_server/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/ipsec

2017-05-10 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Wed May 10 08:59:40 UTC 2017

Modified Files:
src/tests/net/ipsec: t_ipsec_tunnel.sh

Log Message:
Dedup some routines


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tests/net/ipsec/t_ipsec_tunnel.sh

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



CVS commit: src/tests/net/ipsec

2017-05-10 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Wed May 10 09:00:29 UTC 2017

Modified Files:
src/tests/net/ipsec: t_ipsec_tunnel.sh

Log Message:
Disable DAD rather than waiting its completion every time


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/tests/net/ipsec/t_ipsec_tunnel.sh

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



CVS commit: src

2017-05-10 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Wed May 10 09:08:25 UTC 2017

Modified Files:
src/distrib/sets/lists/tests: mi
src/tests/net/ipsec: Makefile
Added Files:
src/tests/net/ipsec: t_ipsec_tunnel_odd.sh

Log Message:
Test tunnel mode with IPv4 over IPv6 and IPv6 over IPv4


To generate a diff of this commit:
cvs rdiff -u -r1.737 -r1.738 src/distrib/sets/lists/tests/mi
cvs rdiff -u -r1.4 -r1.5 src/tests/net/ipsec/Makefile
cvs rdiff -u -r0 -r1.1 src/tests/net/ipsec/t_ipsec_tunnel_odd.sh

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



CVS commit: src/sys

2017-05-10 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Wed May 10 09:34:52 UTC 2017

Modified Files:
src/sys/netinet: ip_output.c
src/sys/netipsec: ipsec.c ipsec.h

Log Message:
Stop ipsec4_output returning SP to the caller

SP isn't used by the caller (ip_output) and also holding its
reference looks unnecessary.


To generate a diff of this commit:
cvs rdiff -u -r1.277 -r1.278 src/sys/netinet/ip_output.c
cvs rdiff -u -r1.86 -r1.87 src/sys/netipsec/ipsec.c
cvs rdiff -u -r1.45 -r1.46 src/sys/netipsec/ipsec.h

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



CVS commit: src/sys/opencrypto

2017-05-10 Thread Kengo NAKAHARA
Module Name:src
Committed By:   knakahara
Date:   Wed May 10 09:45:51 UTC 2017

Modified Files:
src/sys/opencrypto: crypto.c

Log Message:
fix: crypto_drivers[hid].cc_process() could be called even if it was null.

If a crypto driver is unregistered before calling cyrptointr(),
the crypto_drivers[hid].cc_process is null in spite of the hid
is less than crypto_drivers_num.

reffered to FreeBSD code.


To generate a diff of this commit:
cvs rdiff -u -r1.62 -r1.63 src/sys/opencrypto/crypto.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/time

2017-05-10 Thread Robert Elz
Module Name:src
Committed By:   kre
Date:   Wed May 10 10:34:30 UTC 2017

Modified Files:
src/lib/libc/time: localtime.c

Log Message:
Turns out that the previous fix is incorrect, we were not doing ++hit
to change the boolean hit from false to true, but to change it from 1 to 2
which in a sense should have been obvious from the context:
if (hit)
/* more tests */
++hit;
The real problem was that hit was (in the imported tzcode) incorrectly
changed from int to bool in a previous update.

Not that it matters, this code is never actually executed - it was there
to deal with the mythical double leapseconds, which simply never exist
(hit counted the number of leapseconds in an adjustment) and it will all
be gone in the next tzcode update.

For now, just turn hit back into an int, which should satisfy gcc 8,
I hope.


To generate a diff of this commit:
cvs rdiff -u -r1.107 -r1.108 src/lib/libc/time/localtime.c

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



CVS import: src/external/bsd/dhcpcd/dist

2017-05-10 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Wed May 10 11:00:38 UTC 2017

Update of /cvsroot/src/external/bsd/dhcpcd/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv7062

Log Message:
Import dhcpcd-7.0.0-rc1 with the following changes:
  *  Default to use VLANID>0 for IAID instead of MAC address
  *  Stop sharing the DHCPv6 port in master mode with other processes
  *  Fix some prefix delegation issues when the carrier drops or
 addresses become stale
  *  Fix a crash when starting dhcpcd with -n
  *  Fix test for preferring a fake lease over a real one
  *  Show to real address lifetimes being added when adding IPv6
 addresses
  *  Restore the -G, --nogateway option

Status:

Vendor Tag: roy
Release Tags:   dhcpcd-7-0-0-rc1

U src/external/bsd/dhcpcd/dist/.arcconfig
U src/external/bsd/dhcpcd/dist/.gitignore
U src/external/bsd/dhcpcd/dist/BUILDING.md
U src/external/bsd/dhcpcd/dist/LICENSE
U src/external/bsd/dhcpcd/dist/Makefile
U src/external/bsd/dhcpcd/dist/Makefile.inc
U src/external/bsd/dhcpcd/dist/README.md
U src/external/bsd/dhcpcd/dist/config-null.mk
U src/external/bsd/dhcpcd/dist/configure
U src/external/bsd/dhcpcd/dist/iconfig.mk
U src/external/bsd/dhcpcd/dist/compat/_strtoi.h
U src/external/bsd/dhcpcd/dist/compat/arc4random.c
U src/external/bsd/dhcpcd/dist/compat/arc4random.h
U src/external/bsd/dhcpcd/dist/compat/bitops.h
U src/external/bsd/dhcpcd/dist/compat/queue.h
U src/external/bsd/dhcpcd/dist/compat/arc4random_uniform.c
U src/external/bsd/dhcpcd/dist/compat/arc4random_uniform.h
U src/external/bsd/dhcpcd/dist/compat/reallocarray.c
U src/external/bsd/dhcpcd/dist/compat/dprintf.c
U src/external/bsd/dhcpcd/dist/compat/dprintf.h
U src/external/bsd/dhcpcd/dist/compat/endian.h
U src/external/bsd/dhcpcd/dist/compat/pidfile.c
U src/external/bsd/dhcpcd/dist/compat/pidfile.h
U src/external/bsd/dhcpcd/dist/compat/reallocarray.h
U src/external/bsd/dhcpcd/dist/compat/strtoi.c
U src/external/bsd/dhcpcd/dist/compat/strtoi.h
U src/external/bsd/dhcpcd/dist/compat/strtou.c
U src/external/bsd/dhcpcd/dist/compat/crypt/md5.c
U src/external/bsd/dhcpcd/dist/compat/crypt/md5.h
U src/external/bsd/dhcpcd/dist/compat/crypt/sha256.c
U src/external/bsd/dhcpcd/dist/compat/crypt/sha256.h
U src/external/bsd/dhcpcd/dist/src/GNUmakefile
U src/external/bsd/dhcpcd/dist/src/Makefile
U src/external/bsd/dhcpcd/dist/src/arp.c
U src/external/bsd/dhcpcd/dist/src/arp.h
U src/external/bsd/dhcpcd/dist/src/auth.c
U src/external/bsd/dhcpcd/dist/src/auth.h
U src/external/bsd/dhcpcd/dist/src/bpf.c
U src/external/bsd/dhcpcd/dist/src/bpf.h
U src/external/bsd/dhcpcd/dist/src/common.c
U src/external/bsd/dhcpcd/dist/src/common.h
U src/external/bsd/dhcpcd/dist/src/control.c
U src/external/bsd/dhcpcd/dist/src/control.h
U src/external/bsd/dhcpcd/dist/src/dhcp-common.c
U src/external/bsd/dhcpcd/dist/src/defs.h
U src/external/bsd/dhcpcd/dist/src/dev.c
U src/external/bsd/dhcpcd/dist/src/dev.h
U src/external/bsd/dhcpcd/dist/src/dhcpcd-definitions.conf
U src/external/bsd/dhcpcd/dist/src/dhcp-common.h
U src/external/bsd/dhcpcd/dist/src/dhcp.c
U src/external/bsd/dhcpcd/dist/src/dhcp.h
U src/external/bsd/dhcpcd/dist/src/dhcp6.c
U src/external/bsd/dhcpcd/dist/src/dhcp6.h
U src/external/bsd/dhcpcd/dist/src/dhcpcd.conf.5.in
U src/external/bsd/dhcpcd/dist/src/dhcpcd.8.in
U src/external/bsd/dhcpcd/dist/src/dhcpcd-definitions-small.conf
U src/external/bsd/dhcpcd/dist/src/dhcpcd-embedded.c.in
U src/external/bsd/dhcpcd/dist/src/dhcpcd-embedded.h.in
C src/external/bsd/dhcpcd/dist/src/dhcpcd.c
U src/external/bsd/dhcpcd/dist/src/dhcpcd.conf
U src/external/bsd/dhcpcd/dist/src/genembedc
U src/external/bsd/dhcpcd/dist/src/dhcpcd.h
U src/external/bsd/dhcpcd/dist/src/duid.c
U src/external/bsd/dhcpcd/dist/src/duid.h
U src/external/bsd/dhcpcd/dist/src/eloop.c
U src/external/bsd/dhcpcd/dist/src/eloop.h
U src/external/bsd/dhcpcd/dist/src/if-linux-wext.c
U src/external/bsd/dhcpcd/dist/src/genembedh
U src/external/bsd/dhcpcd/dist/src/if-bsd.c
U src/external/bsd/dhcpcd/dist/src/if-linux.c
C src/external/bsd/dhcpcd/dist/src/if-options.c
U src/external/bsd/dhcpcd/dist/src/if-options.h
U src/external/bsd/dhcpcd/dist/src/if-sun.c
U src/external/bsd/dhcpcd/dist/src/if.c
U src/external/bsd/dhcpcd/dist/src/if.h
U src/external/bsd/dhcpcd/dist/src/ipv4.c
U src/external/bsd/dhcpcd/dist/src/ipv4.h
U src/external/bsd/dhcpcd/dist/src/ipv4ll.c
U src/external/bsd/dhcpcd/dist/src/ipv4ll.h
U src/external/bsd/dhcpcd/dist/src/ipv6.c
U src/external/bsd/dhcpcd/dist/src/ipv6.h
U src/external/bsd/dhcpcd/dist/src/ipv6nd.c
U src/external/bsd/dhcpcd/dist/src/ipv6nd.h
U src/external/bsd/dhcpcd/dist/src/logerr.c
U src/external/bsd/dhcpcd/dist/src/logerr.h
U src/external/bsd/dhcpcd/dist/src/route.c
U src/external/bsd/dhcpcd/dist/src/route.h
U src/external/bsd/dhcpcd/dist/src/sa.c
U src/external/bsd/dhcpcd/dist/src/sa.h
U src/external/bsd/dhcpcd/dist/src/script.c
U src/external/bsd/dhcpcd/dist/src/script.h
U src/external/bsd/dhcpcd/dist/src/crypt/hmac_md5.c
U src/exte

CVS commit: src/external/bsd/dhcpcd/dist/src

2017-05-10 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Wed May 10 11:03:44 UTC 2017

Modified Files:
src/external/bsd/dhcpcd/dist/src: dhcpcd.c if-options.c

Log Message:
Sync


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/dhcpcd/dist/src/dhcpcd.c \
src/external/bsd/dhcpcd/dist/src/if-options.c

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



CVS commit: src/doc

2017-05-10 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Wed May 10 11:05:17 UTC 2017

Modified Files:
src/doc: 3RDPARTY CHANGES

Log Message:
Note import of dhcpcd-7.0.0-rc1


To generate a diff of this commit:
cvs rdiff -u -r1.1441 -r1.1442 src/doc/3RDPARTY
cvs rdiff -u -r1.2280 -r1.2281 src/doc/CHANGES

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



CVS commit: src/bin/sh

2017-05-10 Thread Robert Elz
Module Name:src
Committed By:   kre
Date:   Wed May 10 11:06:48 UTC 2017

Modified Files:
src/bin/sh: parser.c

Log Message:
NFC: Whitespace, KNF, and (some) consistency.


To generate a diff of this commit:
cvs rdiff -u -r1.125 -r1.126 src/bin/sh/parser.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/mips

2017-05-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed May 10 11:27:14 UTC 2017

Modified Files:
src/sys/arch/mips/mips: vm_machdep.c

Log Message:
Improve comment wording.


To generate a diff of this commit:
cvs rdiff -u -r1.153 -r1.154 src/sys/arch/mips/mips/vm_machdep.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/makemandb

2017-05-10 Thread Abhinav Upadhyay
Module Name:src
Committed By:   abhinav
Date:   Wed May 10 12:09:52 UTC 2017

Modified Files:
src/usr.sbin/makemandb: makemandb.c

Log Message:
Get rid of unnecessary variable.


To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/usr.sbin/makemandb/makemandb.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/mips

2017-05-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed May 10 12:12:21 UTC 2017

Modified Files:
src/sys/arch/mips/mips: vm_machdep.c

Log Message:
Allow cpu_uarea_alloc to return NULL for non-system LWPs in the non-_LP64
case.  That way TLB mapped KVA can be found by uarea_poolpage_alloc.


To generate a diff of this commit:
cvs rdiff -u -r1.154 -r1.155 src/sys/arch/mips/mips/vm_machdep.c

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



CVS commit: src/sbin/mount_portal

2017-05-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed May 10 13:58:26 UTC 2017

Modified Files:
src/sbin/mount_portal: pt_file.c

Log Message:
set only the effective user id to the user id of the requesting user so that
we can go back to the original uid later.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sbin/mount_portal/pt_file.c

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



CVS commit: src/sbin/mount_portal

2017-05-10 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Wed May 10 16:35:18 UTC 2017

Modified Files:
src/sbin/mount_portal: puffs_portal.c

Log Message:
We need to provide a size for getattr for the cp example to work, so cheat
and use fstat() to do it instead of libpuffs.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sbin/mount_portal/puffs_portal.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/mips

2017-05-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed May 10 22:19:31 UTC 2017

Modified Files:
src/sys/arch/mips/mips: vm_machdep.c

Log Message:
Make cpu_uarea_{alloc,free} conditional on PMAP_{,UN}MAP_POOLPAGE and
use PMAP_{,UN}_POOLPAGE to ensure cache aliases are handled correctly
and for all the pages used.


To generate a diff of this commit:
cvs rdiff -u -r1.155 -r1.156 src/sys/arch/mips/mips/vm_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/arch/mips/mips

2017-05-10 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Wed May 10 22:23:13 UTC 2017

Modified Files:
src/sys/arch/mips/mips: vm_machdep.c

Log Message:
Add a KASSERT


To generate a diff of this commit:
cvs rdiff -u -r1.156 -r1.157 src/sys/arch/mips/mips/vm_machdep.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/make

2017-05-10 Thread Simon J. Gerraty
Module Name:src
Committed By:   sjg
Date:   Wed May 10 22:26:14 UTC 2017

Modified Files:
src/usr.bin/make: main.c

Log Message:
Main_SetObjdir: ensure buf2 is in scope


To generate a diff of this commit:
cvs rdiff -u -r1.264 -r1.265 src/usr.bin/make/main.c

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



CVS commit: [prg-localcount2] src

2017-05-10 Thread Paul Goyette
Module Name:src
Committed By:   pgoyette
Date:   Thu May 11 02:58:44 UTC 2017

Modified Files:
src/bin/ksh [prg-localcount2]: misc.c
src/bin/sh [prg-localcount2]: eval.c input.c input.h jobs.c mktokens
nodetypes parser.c sh.1 show.c trap.c var.c
src/distrib/sets/lists/base [prg-localcount2]: shl.mi
src/distrib/sets/lists/comp [prg-localcount2]: mi
src/distrib/sets/lists/debug [prg-localcount2]: md.amd64 shl.mi
src/distrib/sets/lists/tests [prg-localcount2]: mi
src/distrib/utils/x_ifconfig [prg-localcount2]: Makefile
src/doc [prg-localcount2]: 3RDPARTY CHANGES
src/external/bsd/dhcpcd/dist [prg-localcount2]: Makefile configure
src/external/bsd/dhcpcd/dist/src [prg-localcount2]: Makefile defs.h
dhcp6.c dhcpcd-definitions-small.conf dhcpcd.8.in dhcpcd.c
dhcpcd.conf.5.in dhcpcd.h if-bsd.c if-linux.c if-options.c
if-options.h if-sun.c if.c if.h ipv4.c ipv6.c ipv6.h route.c
src/external/bsd/openpam/dist [prg-localcount2]: CREDITS HISTORY
LICENSE Makefile.am Makefile.in README RELNOTES TODO aclocal.m4
autogen.sh compile config.h.in configure configure.ac depcomp
install-sh ltmain.sh missing mkpkgng.in test-driver
src/external/bsd/openpam/dist/bin [prg-localcount2]: Makefile.am
Makefile.in
src/external/bsd/openpam/dist/bin/openpam_dump_policy [prg-localcount2]:
Makefile.am Makefile.in openpam_dump_policy.c
src/external/bsd/openpam/dist/bin/pamtest [prg-localcount2]:
Makefile.am Makefile.in pamtest.1 pamtest.c
src/external/bsd/openpam/dist/bin/su [prg-localcount2]: Makefile.am
Makefile.in su.1 su.c
src/external/bsd/openpam/dist/doc [prg-localcount2]: Makefile.am
Makefile.in
src/external/bsd/openpam/dist/doc/man [prg-localcount2]: Makefile.am
Makefile.in openpam.3 openpam.man openpam_borrow_cred.3
openpam_free_data.3 openpam_free_envlist.3 openpam_get_feature.3
openpam_get_option.3 openpam_log.3 openpam_nullconv.3
openpam_readline.3 openpam_readlinev.3 openpam_readword.3
openpam_restore_cred.3 openpam_set_feature.3 openpam_set_option.3
openpam_straddch.3 openpam_subst.3 openpam_ttyconv.3 pam.3
pam.conf.5 pam.man pam_acct_mgmt.3 pam_authenticate.3
pam_chauthtok.3 pam_close_session.3 pam_conv.3 pam_end.3
pam_error.3 pam_get_authtok.3 pam_get_data.3 pam_get_item.3
pam_get_user.3 pam_getenv.3 pam_getenvlist.3 pam_info.3
pam_open_session.3 pam_prompt.3 pam_putenv.3 pam_set_data.3
pam_set_item.3 pam_setcred.3 pam_setenv.3 pam_sm_acct_mgmt.3
pam_sm_authenticate.3 pam_sm_chauthtok.3 pam_sm_close_session.3
pam_sm_open_session.3 pam_sm_setcred.3 pam_start.3 pam_strerror.3
pam_verror.3 pam_vinfo.3 pam_vprompt.3
src/external/bsd/openpam/dist/include [prg-localcount2]: Makefile.am
Makefile.in
src/external/bsd/openpam/dist/include/security [prg-localcount2]:
Makefile.am Makefile.in openpam.h openpam_attr.h openpam_version.h
pam_appl.h pam_constants.h pam_modules.h pam_types.h
src/external/bsd/openpam/dist/lib [prg-localcount2]: Makefile.am
Makefile.in
src/external/bsd/openpam/dist/lib/libpam [prg-localcount2]: Makefile.am
Makefile.in openpam_asprintf.c openpam_asprintf.h
openpam_borrow_cred.c openpam_check_owner_perms.c
openpam_configure.c openpam_constants.c openpam_constants.h
openpam_cred.h openpam_ctype.h openpam_debug.h openpam_dispatch.c
openpam_dlfunc.h openpam_dynamic.c openpam_features.c
openpam_features.h openpam_findenv.c openpam_free_data.c
openpam_free_envlist.c openpam_get_feature.c openpam_get_option.c
openpam_impl.h openpam_load.c openpam_log.c openpam_nullconv.c
openpam_readline.c openpam_readlinev.c openpam_readword.c
openpam_restore_cred.c openpam_set_feature.c openpam_set_option.c
openpam_static.c openpam_straddch.c openpam_strlcat.c
openpam_strlcat.h openpam_strlcmp.h openpam_strlcpy.c
openpam_strlcpy.h openpam_strlset.c openpam_strlset.h
openpam_subst.c openpam_ttyconv.c openpam_vasprintf.c
openpam_vasprintf.h pam_acct_mgmt.c pam_authenticate.c
pam_authenticate_secondary.c pam_chauthtok.c pam_close_session.c
pam_end.c pam_error.c pam_get_authtok.c pam_get_data.c
pam_get_item.c pam_get_mapped_authtok.c pam_get_mapped_username.c
pam_get_user.c pam_getenv.c pam_getenvlist.c pam_info.c
pam_open_session.c pam_prompt.c pam_putenv.c pam_set_data.c
pam_set_item.c pam_set_mapped_authtok.c pam_set_mapped_username.c
pam

CVS commit: src/lib/librumpuser

2017-05-10 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Thu May 11 04:27:27 UTC 2017

Modified Files:
src/lib/librumpuser: rumpuser_port.h

Log Message:
Update NetBSD values obtained from running configure as instructed in comment.
This paves the way to resolve rump build process using buildrump.sh, where the 
definition of
HAVE_REGISTER_T caused conflicting definitions of register_t.


To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/lib/librumpuser/rumpuser_port.h

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



CVS commit: src

2017-05-10 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Thu May 11 04:33:14 UTC 2017

Modified Files:
src/lib/librumpclient: Makefile
src/lib/librumphijack: Makefile
src/lib/librumpuser: Makefile
src/usr.bin/rump_allserver: Makefile
src/usr.bin/rump_server: Makefile

Log Message:
With the removal of HAVE_REGISTER_T from rumpuser_port.h, _KERNTYPES does not
need to be defined. This allows register_t to be typedef'd to RUMP_REGISTER_T
without conflict, as highlighted in PR kern/52206.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/lib/librumpclient/Makefile
cvs rdiff -u -r1.19 -r1.20 src/lib/librumphijack/Makefile
cvs rdiff -u -r1.26 -r1.27 src/lib/librumpuser/Makefile
cvs rdiff -u -r1.10 -r1.11 src/usr.bin/rump_allserver/Makefile
cvs rdiff -u -r1.11 -r1.12 src/usr.bin/rump_server/Makefile

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



CVS commit: src/sys/netipsec

2017-05-10 Thread Ryo Shimizu
Module Name:src
Committed By:   ryo
Date:   Thu May 11 05:55:14 UTC 2017

Modified Files:
src/sys/netipsec: ipsec.c ipsec.h ipsec_input.c ipsec_output.c
xform_ah.c xform_esp.c xform_ipcomp.c xform_ipip.c

Log Message:
Make ipsec_address() and ipsec_logsastr() mpsafe.


To generate a diff of this commit:
cvs rdiff -u -r1.87 -r1.88 src/sys/netipsec/ipsec.c
cvs rdiff -u -r1.46 -r1.47 src/sys/netipsec/ipsec.h \
src/sys/netipsec/ipsec_output.c
cvs rdiff -u -r1.41 -r1.42 src/sys/netipsec/ipsec_input.c
cvs rdiff -u -r1.53 -r1.54 src/sys/netipsec/xform_ah.c
cvs rdiff -u -r1.54 -r1.55 src/sys/netipsec/xform_esp.c
cvs rdiff -u -r1.37 -r1.38 src/sys/netipsec/xform_ipcomp.c
cvs rdiff -u -r1.48 -r1.49 src/sys/netipsec/xform_ipip.c

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



CVS commit: src/share/misc

2017-05-10 Thread Marc Balmer
Module Name:src
Committed By:   mbalmer
Date:   Thu May 11 06:46:45 UTC 2017

Modified Files:
src/share/misc: airport

Log Message:
fix TIA entry


To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 src/share/misc/airport

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